/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/ |
queue.h | 17 * We make the assumption that messages are only enqueued on the main thread 19 * thread, EnqueueMessage will return zero if the message could not be enqueued.
|
/external/iproute2/man/man8/ |
tc-pfifo_fast.8 | 22 queues side by side, where packets can be enqueued in any of the three bands 33 Additional packets coming in are not enqueued but are instead dropped.
|
tc.8 | 95 .B enqueued 106 then be enqueued in any of the inner qdiscs, which are within the 118 be enqueued. Whenever traffic arrives at a class with subclasses, it needs 200 subclasses to which traffic may be enqueued. 229 If classification did not succeed, packets are enqueued to the leaf qdisc
|
/frameworks/av/services/audioflinger/ |
SchedulingPolicyService.h | 25 // after the request is enqueued but not necessarily executed. 26 // The default value 'false' means to return after request has been enqueued and executed.
|
/external/openfst/src/include/fst/ |
prune.h | 132 vector<size_t> enqueued(ns, kNoKey); 142 enqueued[s] = heap.Insert(s); 149 enqueued[s] = kNoKey; 173 if (enqueued[arc.nextstate] == kNoKey) { 174 enqueued[arc.nextstate] = heap.Insert(arc.nextstate); 177 heap.Update(enqueued[arc.nextstate], arc.nextstate); 253 vector<size_t> enqueued; local 266 while (enqueued.size() <= s) { 267 enqueued.push_back(kNoKey); 270 enqueued[s] = heap.Insert(s) [all...] |
/external/chromium_org/content/browser/speech/ |
audio_buffer.h | 57 // Dequeues all previously enqueued chunks, merging them in a single chunk. 60 // Removes and frees all the enqueued chunks.
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/ |
ReferenceTest.java | 60 assertTrue("Not properly enqueued.", rq.poll().get() == obj); 62 assertTrue("Should remain enqueued.", !ref.isEnqueued()); 150 assertTrue("Should start off not enqueued.", !ref.isEnqueued()); 152 assertTrue("Should now be enqueued.", ref.isEnqueued()); 154 assertTrue("Should still be enqueued.", ref.isEnqueued()); 157 assertTrue("Should now be not enqueued.", !ref.isEnqueued());
|
/libcore/luni/src/main/java/java/lang/ref/ |
Reference.java | 108 * If non-null, the queue on which this reference will be enqueued 146 * object to be enqueued. 156 * become enqueued, or {@code false} otherwise 170 * Forces the reference object to be enqueued if it has been associated with 174 * become enqueued, or {@code false} otherwise 191 * Checks whether the reference object has been enqueued. 193 * @return {@code true} if the {@code Reference} has been enqueued, {@code
|
WeakReference.java | 63 * At some future point, all references in {@code ref} will be enqueued 76 * A {@code SoftReference} should be cleared and enqueued <em>as late as 81 * A {@code WeakReference} may be cleared and enqueued as soon as is
|
FinalizerReference.java | 83 * Waits for all currently-enqueued references to be finalized. 113 * finalize() method is called, we know all previously-enqueued finalizable
|
PhantomReference.java | 38 * phantom-reachable, it is being enqueued 53 * does not make any sense, since the reference will never be enqueued, and
|
ReferenceQueue.java | 22 * enqueued when the garbage collector detects the reachability type specified 133 * reference object to be enqueued.
|
/external/chromium_org/net/spdy/ |
spdy_write_queue.h | 45 // enqueued the earliest and its associated stream. Returns true and 71 // Whether |stream| was non-NULL when enqueued.
|
/libcore/luni/src/test/java/tests/api/java/lang/ref/ |
ReferenceTest.java | 117 assertTrue("Not properly enqueued.", rq.poll().get() == obj); 119 assertTrue("Should remain enqueued.", !ref.isEnqueued()); 152 assertNotNull("Object not enqueued.", ref); 164 assertNotNull("Object not enqueued.", ref); 267 assertTrue("Should start off not enqueued.", !ref.isEnqueued()); 269 assertTrue("Should now be enqueued.", ref.isEnqueued()); 271 assertTrue("Should still be enqueued.", ref.isEnqueued()); 274 assertTrue("Should now be not enqueued.", !ref.isEnqueued());
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
PrioritizedSerialExecutor.java | 61 * @param r the enqueued task 85 * @param r the enqueued task
|
/external/chromium_org/content/browser/renderer_host/input/ |
gesture_event_filter_unittest.cc | 225 // Enqueued. 243 // Enqueued. 302 // Enqueued. 324 // Enqueued. 339 // Enqueued. 354 // Enqueued. 378 // Enqueued. 405 // Enqueued. 420 // Enqueued. 435 // Enqueued [all...] |
/external/chromium_org/mojo/system/ |
proxy_message_pipe_endpoint.cc | 67 // are still enqueued. (Messages may still be enqueued if we're not running
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
shortest-path.h | 76 vector<bool> enqueued; local 97 enqueued.push_back(false); 105 enqueued.push_back(true); 110 enqueued[s] = false; 118 enqueued.push_back(false); 129 if (!enqueued[arc.nextstate]) { 131 enqueued[arc.nextstate] = true; 152 enqueued[s] = true;
|
/frameworks/base/tests/CoreTests/android/core/ |
HeapTest.java | 242 * the queue are marked as enqueued. Once we 244 * be marked as enqueued. 255 "phantom refs not marked as enqueued"); 277 "reference enqueued for strongly-reachable " + 289 /* We've visited all of the enqueued references. 291 * that should have been enqueued. 300 // "] should be enqueued"); 306 "phantom refs not enqueued");
|
/external/chromium_org/content/common/gpu/media/ |
exynos_video_encode_accelerator.h | 248 // GSC input buffers enqueued to device. 257 // GSC output buffers enqueued to device. 272 // MFC input buffers enqueued to device. 281 // MFC output buffers enqueued to device.
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/ |
RecordingReceiver.java | 47 * response isn't enqueued before the timeout.
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLooper.java | 179 * Causes all enqueued tasks to be discarded 186 * Returns the {@link com.xtremelabs.robolectric.util.Scheduler} that is being used to manage the enqueued tasks. 188 * @return the {@link com.xtremelabs.robolectric.util.Scheduler} that is being used to manage the enqueued tasks.
|
/libcore/luni/src/main/java/java/util/concurrent/ |
TransferQueue.java | 70 * in which case the element is not left enqueued 97 * in which case the element is not left enqueued 99 * in which case the element is not left enqueued
|
/external/chromium_org/chrome/browser/resources/file_manager/common/js/ |
async_util.js | 134 * Runs the enqueued closured in order of dependencies. 145 * Runs enqueued pending tasks whose dependencies are completed. 178 * Finishes the passed task and continues executing enqueued closures.
|
/dalvik/vm/alloc/ |
HeapInternal.h | 39 /* The list of Reference objects that need to be enqueued.
|