Home
last modified time | relevance | path

Searched refs:QUEUE (Results 1 – 24 of 24) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/util/
DExceptionCatchingInputStream.java18 private static final Queue<ExceptionCatchingInputStream> QUEUE = Util.createQueue(0); field in ExceptionCatchingInputStream
25 synchronized (QUEUE) { in obtain()
26 result = QUEUE.poll(); in obtain()
37 while (!QUEUE.isEmpty()) { in clearQueue()
38 QUEUE.remove(); in clearQueue()
134 synchronized (QUEUE) { in release()
135 QUEUE.offer(this); in release()
/external/perfetto/test/trace_processor/graphics/
Dgraphics_frame_events.py23 QUEUE = 2 variable in BufferEvent
39 …(ts=4, buffer_id=1, layer_name="layer1", frame_number=11, event_type=BufferEvent.QUEUE, duration=0)
46 …(ts=9, buffer_id=2, layer_name="layer2", frame_number=12, event_type=BufferEvent.QUEUE, duration=0)
57 …ts=34, buffer_id=1, layer_name="layer1", frame_number=21, event_type=BufferEvent.QUEUE, duration=0)
59 …ts=41, buffer_id=1, layer_name="layer1", frame_number=22, event_type=BufferEvent.QUEUE, duration=0)
68 …ts=75, buffer_id=1, layer_name="layer1", frame_number=26, event_type=BufferEvent.QUEUE, duration=0)
72 …ts=83, buffer_id=1, layer_name="layer1", frame_number=30, event_type=BufferEvent.QUEUE, duration=0)
74 …ts=92, buffer_id=1, layer_name="layer2", frame_number=35, event_type=BufferEvent.QUEUE, duration=0)
/external/rust/crates/tokio/tests/support/
Dmock_pool.rs11 static QUEUE: RefCell<VecDeque<Box<dyn FnOnce() + Send>>> = RefCell::new(VecDeque::new()) constant
29 QUEUE.with(|cell| cell.borrow_mut().push_back(task)); in run()
57 QUEUE.with(|cell| cell.borrow().len()) in len()
61 let task = QUEUE in run_one()
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dqueue_stack_map.c5 QUEUE, enumerator
22 if (type == QUEUE) in test_queue_stack_map_by_type()
52 if (type == QUEUE) { in test_queue_stack_map_by_type()
97 test_queue_stack_map_by_type(QUEUE); in test_queue_stack_map()
/external/rust/crates/async-task/examples/
Dspawn-local.rs11 static QUEUE: (flume::Sender<Runnable>, flume::Receiver<Runnable>) = flume::unbounded(); constant
21 let schedule = |runnable| QUEUE.with(|(s, _)| s.send(runnable).unwrap()); in spawn()
47 QUEUE.with(|(_, r)| r.recv().unwrap().run()); in run()
Dspawn.rs18 static QUEUE: Lazy<flume::Sender<Runnable>> = Lazy::new(|| { in spawn() constant
33 let schedule = |runnable| QUEUE.send(runnable).unwrap(); in spawn()
/external/igt-gpu-tools/tests/i915/
Dgem_ctx_switch.c48 #define QUEUE 0x2 macro
132 if (flags & QUEUE) in single()
239 if (flags & QUEUE) in all()
324 { "-queue", QUEUE, gem_has_queues },
325 { "-queue-interruptible", QUEUE | INTERRUPTIBLE, gem_has_queues },
423 all(fd, light, QUEUE, 5);
425 all(fd, heavy, QUEUE, 5);
/external/tcpdump/tests/
Dof10_pf5240-vv.out176 type QUEUE, flags 0x0000
179 type QUEUE, flags 0x0000
185 type QUEUE, flags 0x0001 (MORE)
192 type QUEUE, flags 0x0001 (MORE)
195 type QUEUE, flags 0x0001 (MORE)
198 type QUEUE, flags 0x0001 (MORE)
201 type QUEUE, flags 0x0001 (MORE)
204 type QUEUE, flags 0x0001 (MORE)
207 type QUEUE, flags 0x0001 (MORE)
210 type QUEUE, flags 0x0001 (MORE)
[all …]
Dof10_p3295-vv.out779 type QUEUE, flags 0x0000
/external/OpenCL-CTS/test_common/harness/
Dref_counting.h45 #define MARK_REF_COUNT_QUEUE(c) MARK_REF_COUNT_BASE(c, CommandQueue, QUEUE)
46 #define TEST_REF_COUNT_QUEUE(c) TEST_REF_COUNT_BASE(c, CommandQueue, QUEUE)
/external/blktrace/
Dact_mask.c20 DECLARE_MASK_MAP(QUEUE),
DREADME56 QUEUE
/external/perfetto/src/trace_processor/importers/proto/
Dgraphics_frame_event_parser.cc148 graphics_frame_stats_map_[event_key][GraphicsFrameEvent::QUEUE]; in CreateBufferEvent()
163 } else if (event.type() == GraphicsFrameEvent::QUEUE) { in CreateBufferEvent()
268 case GraphicsFrameEvent::QUEUE: { in CreatePhaseEvent()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfifo.hpp37 struct QUEUE struct
Dtilemgr.h87 QUEUE<BE_WORK> mFifo;
/external/perfetto/protos/perfetto/trace/android/
Dgraphics_frame_event.proto25 QUEUE = 2; enumerator
/external/iptables/extensions/
Dlibxt_NFQUEUE.man13 This specifies the QUEUE number to use. Valid queue numbers are 0 to 65535. The default value is 0.
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dqmdc0c0.c49 NVC0C0_QMDV02_01_DEF(qmd, DEPENDENT_QMD_TYPE, QUEUE, GRID); in NVC0C0QmdDump_V02_01()
Dqmdc3c0.c49 NVC3C0_QMDV02_02_DEF(qmd, DEPENDENT_QMD_TYPE, QUEUE, GRID); in NVC3C0QmdDump_V02_02()
/external/blktrace/btreplay/doc/
Dbtreplay.tex71 the only traces you are interested in are \emph{QUEUE} requests --
129 As noted above, \texttt{btrecord} extracts \texttt{QUEUE} operations from
130 \texttt{blktrace} output. These \texttt{QUEUE} operations indicate the
/external/openscreen/
DREADME.md271 Clicking the `CQ DRY RUN` button (also, confusingly, labeled `COMMIT QUEUE +1`)
288 `SUBMIT` button (or, confusingly, `COMMIT QUEUE +2`) in Gerrit. This will run
/external/clang/include/clang/AST/
DRecursiveASTVisitor.h311 #define TRAVERSE_STMT_BASE(NAME, CLASS, VAR, QUEUE) \
320 .Traverse##NAME(static_cast<CLASS *>(VAR), QUEUE) \
/external/llvm-project/clang/include/clang/AST/
DRecursiveASTVisitor.h346 #define TRAVERSE_STMT_BASE(NAME, CLASS, VAR, QUEUE) \
355 .Traverse##NAME(static_cast<CLASS *>(VAR), QUEUE) \
/external/perfetto/protos/perfetto/trace/
Dperfetto_trace.proto2288 QUEUE = 2; enumerator