HomeSort by relevance Sort by last modified time
    Searched full:enqueued (Results 1 - 25 of 256) sorted by null

1 2 3 4 5 6 7 8 91011

  /libcore/ojluni/src/main/java/java/lang/ref/
ReferenceQueue.java 41 // when a reference has been enqueued and removed from its queue.
60 * enqueued. Returns true if the reference was enqueued successfully,
61 * false if the reference had already been enqueued.
65 // Verify the reference has not already been enqueued.
73 // are never polled and objects are never enqueued on them.
78 // enqueued, but is now removed from the queue.
94 * Test if the given reference object has been enqueued but not yet
107 * reference object to be enqueued.
108 * @return true if the reference was enqueued
    [all...]
Reference.java 62 * been enqueued. The queueNext field is non-null if and only if this
63 * reference has been enqueued. After this reference has been enqueued and
103 * object to be enqueued.
116 * Tells whether or not this reference object has been enqueued, either by
122 * been enqueued
140 * enqueued; <code>false</code> if it was already enqueued or if
PhantomReference.java 30 * Phantom reference objects, which are enqueued after the collector
45 * automatically cleared by the garbage collector as they are enqueued. An
73 * will never 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-bfifo.8 30 A list of packets is maintained, when a packet is enqueued it gets inserted at the tail of
tc-hfsc.8 37 means (e.g. u32 filter, CLASSIFY target of iptables) will be enqueued. If
  /frameworks/av/media/utils/include/mediautils/
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.
  /libcore/benchmarks/src/benchmarks/
ReferenceBenchmark.java 40 // How fast can references can be allocated and manually enqueued?
48 // How fast can references can be allocated, enqueued, and polled?
59 // How fast can references can be allocated, enqueued, and removed?
74 // How fast can references can be implicitly allocated, enqueued, and
  /art/runtime/mirror/
reference.h 96 // 1. The reference has already been enqueued to a java ReferenceQueue. In
100 // shortly be enqueued on a java ReferenceQueue. In this case the reference
103 // to be enqueued on a java ReferenceQueue.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceTest.java 94 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
96 assertTrue("Should remain enqueued.", !ref.isEnqueued());
129 assertNotNull("Object not enqueued.", ref);
141 assertNotNull("Object not enqueued.", ref);
245 assertTrue("Should start off not enqueued.", !ref.isEnqueued());
247 assertTrue("Should now be enqueued.", ref.isEnqueued());
249 assertTrue("Should still be enqueued.", ref.isEnqueued());
252 assertTrue("Should now be not enqueued.", !ref.isEnqueued());
PhantomReferenceTest.java 26 // before the PhantomReference is enqueued.
95 assertNotNull("Reference should have been enqueued.", r);
  /external/guava/guava/src/com/google/common/util/concurrent/
ListenerCallQueue.java 33 * executor. Each callback task can be enqueued and executed as separate phases.
36 * be enqueued without necessarily executing immediately.
  /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/robolectric/v1/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 69 * in which case the element is not left enqueued
96 * in which case the element is not left enqueued
98 * in which case the element is not left enqueued
  /art/runtime/gc/
reference_processor.cc 200 // We need to check that the references haven't already been enqueued since we can end up
251 // finalized since they may not be enqueued by the time RunFinalization starts.
272 // enqueued if we just finished processing references. Otherwise, we may be doing the main GC
274 // processing can't begin. The GC could have just enqueued the reference one one of the internal
  /external/libvpx/libvpx/vp8/encoder/
lookahead.h 33 * may be done when buffers are enqueued.
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RecordingCallback.java 49 * response isn't enqueued before the timeout.
  /frameworks/wilhelm/src/android/include/
AacBqToPcmCbRenderer.h 41 // This is for instance used whenever ADTS data is being enqueued through an
  /frameworks/wilhelm/src/
sync.c 50 // here is where we would process the enqueued 3D commands
  /hardware/bsp/intel/peripheral/libupm/src/nrf8001/
aci_queue.h 46 * A FIFO queue is maintained for packets. New packets are added (enqueued)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
lookahead.h 33 * may be done when buffers are enqueued.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_lookahead.h 39 * may be done when buffers are enqueued.
  /external/webrtc/webrtc/modules/pacing/
paced_sender.h 107 // Returns the time since the oldest queued packet was enqueued.
116 // Returns the average time since being enqueued, in milliseconds, for all
  /libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java 83 * Waits for all currently-enqueued references to be finalized.
133 * finalize() method is called, we know all previously-enqueued finalizable

Completed in 7203 milliseconds

1 2 3 4 5 6 7 8 91011