Searched refs:queue (Results 251 - 275 of 851) sorted by relevance

<<11121314151617181920>>

/external/javassist/src/main/javassist/scopedpool/
H A DSoftValueHashMap.java62 /* Reference queue for cleared WeakKeys */
63 private ReferenceQueue queue = new ReferenceQueue(); field in class:SoftValueHashMap
71 while ((ref = (SoftValueRef)queue.poll()) != null) {
204 Object rtn = hash.put(key, SoftValueRef.create(key, value, queue));
/external/chromium_org/base/threading/
H A Dworker_pool_posix.h13 // task queue, it does not own the worker threads. The worker threads ask the
27 #include <queue>
/external/chromium_org/build/
H A Dprecompile.h104 #include <queue>
/external/chromium_org/cc/layers/
H A Ddelegated_renderer_layer.h27 virtual bool Update(ResourceUpdateQueue* queue,
H A Dimage_layer.h24 virtual bool Update(ResourceUpdateQueue* queue,
H A Dvideo_layer.h29 virtual bool Update(ResourceUpdateQueue* queue,
/external/chromium_org/cc/resources/
H A Dbitmap_skpicture_content_layer_updater.h23 virtual void Update(ResourceUpdateQueue* queue,
/external/chromium_org/cc/test/
H A Dfake_content_layer.h28 virtual bool Update(ResourceUpdateQueue* queue,
H A Dfake_painted_scrollbar_layer.h23 virtual bool Update(ResourceUpdateQueue* queue,
H A Dfake_picture_layer.h33 virtual bool Update(ResourceUpdateQueue* queue,
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_tabrestore_browsertest.cc85 content::DOMMessageQueue queue; local
90 AwaitTabsReady(&queue, 2);
133 content::DOMMessageQueue queue; local
136 AwaitTabsReady(&queue, 2);
/external/chromium_org/content/common/gpu/media/
H A Dvaapi_video_decode_accelerator.h12 #include <queue>
68 // queue it for decode.
72 // Get a new input buffer from the queue and set it up in decoder. This will
187 typedef std::queue<linked_ptr<InputBuffer> > InputBuffers;
189 // Signalled when input buffers are queued onto the input_buffers_ queue.
196 typedef std::queue<int32> OutputBuffers;
211 // queue.
220 // requests output, we'll store the request on pending_output_cbs_ queue for
224 std::queue<OutputCB> pending_output_cbs_;
H A Dvaapi_video_encode_accelerator.h9 #include <queue>
53 // submitted to the hardware, it awaits on the submitted_encode_jobs_ queue
231 std::queue<linked_ptr<InputFrameRef> > encoder_input_queue_;
234 std::queue<linked_ptr<BitstreamBufferRef> > available_bitstream_buffers_;
237 std::queue<linked_ptr<EncodeJob> > submitted_encode_jobs_;
/external/chromium_org/device/bluetooth/
H A Dbluetooth_socket_mac.h8 #include <queue>
186 std::queue<scoped_refptr<net::IOBufferWithSize> > receive_queue_;
191 // Send queue -- one entry per pending send operation.
192 std::queue<linked_ptr<SendRequest>> send_queue_;
199 std::queue<linked_ptr<BluetoothChannelMac>> accept_queue_;
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementScheduler.cpp52 // FIXME: Consider moving the element's callback queue to ElementRareData.
69 // Finds or creates the callback queue for element.
100 CustomElementCallbackQueue& queue = scheduleCallbackQueue(element);
101 queue.append(CustomElementCallbackInvocation::createInvocation(callbacks, type));
109 CustomElementCallbackQueue& queue = scheduleCallbackQueue(element);
110 queue.append(CustomElementCallbackInvocation::createAttributeChangedInvocation(callbacks, name, oldValue, newValue));
131 // processing step, or the base queue.
/external/chromium_org/third_party/libevent/sample/
H A Dsignal-test.c15 #include <sys/queue.h>
/external/chromium_org/third_party/webrtc/base/
H A Dnatsocketfactory.h123 MessageQueue* queue() { return msg_queue_; } function in class:rtc::NATSocketServer
137 virtual void SetMessageQueue(MessageQueue* queue) { argument
138 msg_queue_ = queue;
139 server_->SetMessageQueue(queue);
/external/chromium_org/v8/test/cctest/
H A Dtest-code-stubs-arm64.cc70 MacroAssembler::PushPopQueue queue(&masm);
78 queue.Queue(reg);
83 queue.Queue(d0);
85 queue.PushQueued();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DUninterruptibles.java207 * Invokes {@code queue.}{@link BlockingQueue#take() take()} uninterruptibly.
209 public static <E> E takeUninterruptibly(BlockingQueue<E> queue) { argument
214 return queue.take();
227 * Invokes {@code queue.}{@link BlockingQueue#put(Object) put(element)}
230 public static <E> void putUninterruptibly(BlockingQueue<E> queue, E element) { argument
235 queue.put(element);
/external/ipsec-tools/src/racoon/
H A Dsainfo.h37 #include <sys/queue.h>
H A Dschedule.h37 #include <sys/queue.h>
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h16 #include <queue>
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
H A DCrawler.java47 private final LinkedBlockingQueue<URL> queue = new LinkedBlockingQueue<URL>(); field in class:Crawler
70 for (URL url; (url = queue.take()) != null; ) {
107 if (link != null) queue.add(link);
138 crawler.queue.add(new URL(args[1]));
/external/stlport/test/unit/
H A Dstack_test.cpp3 #include <queue>
/external/chromium_org/chrome/browser/extensions/
H A Dinstall_verifier.h8 #include <queue>
139 // operation at the head of the queue to the current set of ids in
164 // A queue of operations to apply to the current set of allowed ids.
165 std::queue<linked_ptr<PendingOperation> > operation_queue_;

Completed in 723 milliseconds

<<11121314151617181920>>