/external/guava/guava/src/com/google/common/collect/ |
H A D | ForwardingQueue.java | 34 * #offer} which can lead to unexpected behavior. In this case, you should 35 * override {@code offer} as well, either providing your own implementation, or 55 public boolean offer(E o) { method in class:ForwardingQueue 56 return delegate().offer(o); 80 * A sensible definition of {@link #offer} in terms of {@link #add}. If you 81 * override {@link #add}, you may wish to override {@link #offer} to forward
|
H A D | MinMaxPriorityQueue.java | 74 * <li>The enqueing and dequeing operations ({@link #offer}, {@link #add}, and 208 queue.offer(element); 251 offer(element); 258 offer(element); 270 @Override public boolean offer(E element) { method in class:MinMaxPriorityQueue
|
H A D | MapMakerInternalMap.java | 922 public boolean offer(Object o) { 2400 map.removalNotificationQueue.offer(notification); 3187 public boolean offer(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap.EvictionQueue 3323 public boolean offer(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap.ExpirationQueue
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
H A D | ForwardingBlockingQueue.java | 53 @Override public boolean offer(E e, long timeout, TimeUnit unit) method in class:ForwardingBlockingQueue 55 return delegate().offer(e, timeout, unit);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
H A D | AbstractQueueTest.java | 72 public boolean offer(E o) { method in class:AbstractQueueTest.MockAbstractQueue
|
/external/chromium/third_party/libjingle/source/talk/session/tunnel/ |
H A D | securetunnelsessionclient.cc | 286 const SessionDescription* offer) { 289 if (!FindSecureTunnelContent(offer, &content_name, &offer_tunnel)) 285 CreateAnswer( const SessionDescription* offer) argument
|
H A D | tunnelsessionclient.cc | 189 SessionDescription* offer = CreateOffer(data->jid, data->description); local 190 session->Initiate(data->jid.Str(), offer); 286 const SessionDescription* offer) { 289 if (!FindTunnelContent(offer, &content_name, &offer_tunnel)) 285 CreateAnswer( const SessionDescription* offer) argument
|
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | ForwardingQueueTest.java | 93 @Override public boolean offer(T o) { method in class:ForwardingQueueTest.StandardImplForwardingQueue 186 forward.offer("asdf"); 187 assertEquals("[offer(Object)]", getCalls());
|
/external/qemu/slirp/ |
H A D | tcp_input.c | 1697 tcp_mss(struct tcpcb *tp, u_int offer) argument 1704 DEBUG_ARG("offer = %d", offer); 1707 if (offer) 1708 mss = min(mss, offer); 1710 if (mss < tp->t_maxseg || offer != 0)
|
/external/qemu/slirp-android/ |
H A D | tcp_input.c | 1703 tcp_mss(struct tcpcb *tp, u_int offer) argument 1710 DEBUG_ARG("offer = %d", offer); 1713 if (offer) 1714 mss = min(mss, offer); 1716 if (mss < tp->t_maxseg || offer != 0)
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
H A D | call.cc | 69 const SessionDescription* offer = session_client_->CreateOffer(options); local 72 AddSession(session, offer); 73 session->Initiate(jid.Str(), offer); 86 Session* session, const SessionDescription* offer) { 87 AddSession(session, offer); 199 bool Call::AddSession(Session *session, const SessionDescription* offer) { argument 204 const ContentInfo* audio_offer = GetFirstAudioContent(offer); 205 const ContentInfo* video_offer = GetFirstVideoContent(offer); 85 IncomingSession( Session* session, const SessionDescription* offer) argument
|
H A D | mediasessionclient.cc | 139 SessionDescription* offer = new SessionDescription(); local 170 offer->AddContent(CN_AUDIO, NS_JINGLE_RTP, audio); 203 offer->AddContent(CN_VIDEO, NS_JINGLE_RTP, video); 206 return offer; 239 bool SelectCrypto(const MediaContentDescription* offer, CryptoParams *crypto) { argument 240 bool audio = offer->type() == MEDIA_TYPE_AUDIO; 241 const CryptoParamsVec& cryptos = offer->cryptos(); 254 const SessionDescription* offer, const CallOptions& options) { 255 // The answer contains the intersection of the codecs in the offer with the 257 // XEP-0167, we retain the same payload ids from the offer i 253 CreateAnswer( const SessionDescription* offer, const CallOptions& options) argument 363 const SessionDescription* offer = session->remote_description(); local [all...] |
/external/dhcpcd/ |
H A D | dhcpcd.h | 68 struct dhcp_message *offer; member in struct:if_state
|
/external/guava/guava/src/com/google/common/cache/ |
H A D | LocalCache.java | 1012 public boolean offer(Object o) { 2680 map.removalNotificationQueue.offer(notification); 3661 public boolean offer(ReferenceEntry<K, V> entry) { method in class:LocalCache.WriteQueue 3798 public boolean offer(ReferenceEntry<K, V> entry) { method in class:LocalCache.AccessQueue
|