HomeSort by relevance Sort by last modified time
    Searched full:offer (Results 26 - 50 of 2255) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/tools/rtcbot/test/
three_bots_video_conference.js 92 test.log("Creating offer.");
95 function gotOffer(offer) {
96 test.log("Got offer");
97 pc1.setLocalDescription(offer, onSetSessionDescriptionSuccess, test.fail);
98 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess,
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueueTest.java 31 public boolean offer(Integer x) { method in class:AbstractQueueTest.Succeed
42 public boolean offer(Integer x) { method in class:AbstractQueueTest.Fail
53 * add returns true if offer succeeds
61 * add throws ISE true if offer fails
72 * add throws NPE if offer does
PriorityQueueTest.java 47 assertTrue(q.offer(new Integer(i)));
49 assertTrue(q.offer(new Integer(i)));
162 * offer(null) throws NPE
167 q.offer(null);
184 * Offer of comparable element succeeds
188 assertTrue(q.offer(zero));
189 assertTrue(q.offer(one));
193 * Offer of non-Comparable throws CCE
198 q.offer(new Object());
199 q.offer(new Object())
    [all...]
SynchronousQueueTest.java 65 assertFalse(q.offer(zero));
69 * offer fails if no active taker
75 assertFalse(q.offer(one));
189 * timed offer times out if elements not taken
199 assertFalse(q.offer(new Object(), timeoutMillis(), MILLISECONDS));
203 q.offer(new Object(), 2 * LONG_DELAY_MS, MILLISECONDS);
249 * timed poll before a delayed offer times out, returning null;
250 * after offer succeeds; on interruption throws
287 try { assertTrue(q.offer(zero, LONG_DELAY_MS, MILLISECONDS)); }
474 * offer transfers elements across Executor task
    [all...]
  /external/webrtc/talk/session/media/
mediasession.cc 213 static bool SelectCrypto(const MediaContentDescription* offer,
216 bool audio = offer->type() == MEDIA_TYPE_AUDIO;
217 const CryptoParamsVec& cryptos = offer->cryptos();
747 // stream is created. The created content is added to the offer.
758 MediaContentDescriptionImpl<C>* offer) {
759 offer->AddCodecs(codecs);
760 offer->SortCodecs();
763 offer->set_crypto_required(CT_SDES);
765 offer->set_rtcp_mux(options.rtcp_mux_enabled);
768 // if (offer->type() == cricket::MEDIA_TYPE_VIDEO)
    [all...]
rtcpmuxfilter.h 47 // Specifies whether the offer indicates the use of RTCP mux.
65 // Offer with RTCP mux enabled received.
68 // Offer with RTCP mux enabled sent.
79 // Offer and answer set, RTCP mux enabled. It is not possible to de-activate
rtcpmuxfilter.cc 54 LOG(LS_ERROR) << "Invalid state for change of RTCP mux offer";
83 // Go back to the original state after the offer was set and wait for next
91 // If the offer didn't specify RTCP mux, the answer shouldn't either.
113 // If the offer didn't specify RTCP mux, the answer shouldn't either.
135 // the RTP payload type (see IsRtcp). Note that if we offer RTCP
  /external/avahi/docs/
COMPAT-LAYERS 1 Avahi 0.6.1 and above offer full API and ABI compatibility with HOWL
  /external/guava/guava/src/com/google/common/collect/
ForwardingBlockingDeque.java 30 * alone <b>will not</b> change the behaviour of {@link #offer} which can lead to unexpected
31 * behaviour. In this case, you should override {@code offer} as well, either providing your own
100 public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException { method in class:ForwardingBlockingDeque
101 return delegate().offer(e, timeout, unit);
  /external/icu/icu4c/source/extra/uconv/
README 8 want to offer a translation of these messages for a particular locale.
  /frameworks/base/docs/html/distribute/monetize/
freemium.jd 25 A basic approach is to offer a free download with limited features or full
47 A more advanced approach is to offer a range of features and content items
48 through in-app purchases. For example, in games you can offer users new
49 levels, playing pieces, or other game features. In apps you can offer
subscriptions.jd 31 At a basic level you can offer use of your apps or access to their content on
38 A more advanced approach is to offer specific features or content items as
39 subscriptions within your apps. This way you can offer users basic or core
  /frameworks/base/docs/html/training/secure-file-sharing/
index.jd 30 Apps often have a need to offer one or more of their files to another app. For example, an image
31 gallery may want to offer files to image editors, or a file management app may want to allow
36 In all cases, the only secure way to offer a file from your app to another app is to send the
63 Learn how to offer a file to another app by generating a content URI for the file,
  /frameworks/base/media/java/android/media/
package.html 8 <p>Other special classes in the package offer the ability to detect the faces of people
  /packages/apps/Contacts/res/xml/
file_paths.xml 18 <!-- Offer access to files under Context.getCacheDir() -->
  /packages/apps/Settings/res/xml/
file_paths.xml 18 <!-- Offer access to files under Context.getCacheDir() -->
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
SdpObserver.java 32 /** Called on success of Create{Offer,Answer}(). */
38 /** Called on error of Create{Offer,Answer}(). */
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PriorityQueueTest.java 48 integerQueue.offer(array[i]);
89 integerQueue.offer(0);
117 integerQueue.offer(array[i]);
145 integerQueue.offer(array[i]);
160 integerQueue.offer(array[i]);
189 integerQueue.offer(array[i]);
321 queue.offer(array[i]);
359 integerQueue.offer(array[i]);
413 * java.util.PriorityQueue#offer(Object)
420 queue.offer(array[i])
    [all...]
  /external/webrtc/talk/app/webrtc/
peerconnectioninterface_unittest.cc 668 bool offer,
673 if (offer) {
749 rtc::scoped_ptr<SessionDescriptionInterface> offer; local
750 ASSERT_TRUE(DoCreateOffer(offer.use(), nullptr));
752 EXPECT_TRUE(offer->ToString(&sdp));
809 rtc::scoped_ptr<SessionDescriptionInterface> offer; local
810 ASSERT_TRUE(DoCreateOffer(offer.use(), nullptr));
819 EXPECT_TRUE(offer->ToString(&sdp));
856 // answer with the same session description as we offer and thus we can
857 // check if OnAddStream have been called with the same stream as we offer t
979 scoped_ptr<SessionDescriptionInterface> offer; local
1038 std::string offer; local
1095 SessionDescriptionInterface* offer = NULL; local
1116 SessionDescriptionInterface* offer = NULL; local
1141 scoped_ptr<SessionDescriptionInterface> offer; local
1178 scoped_ptr<SessionDescriptionInterface> offer; local
1198 scoped_ptr<SessionDescriptionInterface> offer; local
1212 scoped_ptr<SessionDescriptionInterface> offer; local
1671 SessionDescriptionInterface* offer; local
1703 SessionDescriptionInterface* offer; local
1797 rtc::scoped_ptr<SessionDescriptionInterface> offer; local
    [all...]
webrtcsessiondescriptionfactory.cc 305 error += " failed because remote_description is not an offer.";
376 // When issuing an offer that modifies the session,
381 // Just increase the version number by one each time when a new offer
385 JsepSessionDescription* offer(new JsepSessionDescription(
387 if (!offer->Initialize(desc, session_id_,
389 delete offer;
391 "Failed to initialize the offer.");
400 CopyCandidatesFromSessionDescription(session_->local_description(), offer);
402 PostCreateSessionDescriptionSucceeded(request.observer, offer);
408 // an answer should also contain new ice ufrag and password if an offer ha
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/server/
server_test.html 35 if (data.search("offer") != -1) {
37 // Otherwise replace the offer with an answer.
39 data = data.replace("offer", "offer-loopback");
41 data = data.replace("offer", "answer");
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
SizeStrategy.java 40 keyPool.offer(key);
171 public void offer() { method in class:SizeStrategy.Key
172 pool.offer(this);
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedQueueTest.java 44 public boolean offer(E o) { method in class:SynchronizedQueueTest.TestQueue
46 return delegate.offer(o);
157 create().offer("foo");
  /frameworks/opt/bitmap/src/com/android/bitmap/
UnrefedBitmapCache.java 108 public void offer(final ReusableBitmap value) { method in class:UnrefedBitmapCache
110 super.offer(value);
112 Log.d(TAG, "AltBitmapCache: offer +1");
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
InterpreterInstaller.java 181 mTaskQueue.offer(RequestCode.DOWNLOAD_INTERPRETER);
182 mTaskQueue.offer(RequestCode.EXTRACT_INTERPRETER);
185 mTaskQueue.offer(RequestCode.DOWNLOAD_INTERPRETER_EXTRAS);
186 mTaskQueue.offer(RequestCode.EXTRACT_INTERPRETER_EXTRAS);
189 mTaskQueue.offer(RequestCode.DOWNLOAD_SCRIPTS);
190 mTaskQueue.offer(RequestCode.EXTRACT_SCRIPTS);

Completed in 2072 milliseconds

12 3 4 5 6 7 8 91011>>