Searched defs:offer (Results 1 - 14 of 14) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DForwardingQueue.java34 * #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 DMinMaxPriorityQueue.java74 * <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 DMapMakerInternalMap.java922 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 DForwardingBlockingQueue.java53 @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 DAbstractQueueTest.java72 public boolean offer(E o) { method in class:AbstractQueueTest.MockAbstractQueue
/external/chromium/third_party/libjingle/source/talk/session/tunnel/
H A Dsecuretunnelsessionclient.cc286 const SessionDescription* offer) {
289 if (!FindSecureTunnelContent(offer, &content_name, &offer_tunnel))
285 CreateAnswer( const SessionDescription* offer) argument
H A Dtunnelsessionclient.cc189 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 DForwardingQueueTest.java93 @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 Dtcp_input.c1697 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 Dtcp_input.c1703 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 Dcall.cc69 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 Dmediasessionclient.cc139 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 Ddhcpcd.h68 struct dhcp_message *offer; member in struct:if_state
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java1012 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

Completed in 1990 milliseconds