Home
last modified time | relevance | path

Searched full:queued (Results 1 – 25 of 770) sorted by relevance

12345678910>>...31

/external/mesa3d/src/gallium/drivers/virgl/
Dvirgl_transfer_queue.c37 struct virgl_transfer *queued; member
41 typedef bool (*compare_transfers_t)(struct virgl_transfer *queued,
155 static bool transfers_intersect(struct virgl_transfer *queued, in transfers_intersect() argument
158 return transfer_overlap(queued, current->hw_res, current->base.level, in transfers_intersect()
163 struct virgl_transfer *queued) in remove_transfer() argument
165 list_del(&queued->queue_link); in remove_transfer()
166 virgl_resource_destroy_transfer(queue->vctx, queued); in remove_transfer()
173 struct virgl_transfer *queued = args->queued; in replace_unmapped_transfer() local
175 u_box_union_2d(&current->base.box, &current->base.box, &queued->base.box); in replace_unmapped_transfer()
178 remove_transfer(queue, queued); in replace_unmapped_transfer()
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/
Dassertions.xml7 if op is O_DSYNC, all queued I/O operations shall be completed as if
11 if op is O_SYNC, all queued I/O operations shall be completed as if
19 When the request is queued, error status is [EINPROGRESS].
35 queued.
39 if the operation is not successfully queued.
43 [EAGAIN] Operation was not queued due to temporary resource limitations.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_write/
Dassertions.xml20 successfuly queued.
24 indicate error if the operation is not succesfully queued.
28 The requested AIO operation was not queued to the system due to system
41 The error status of a succesfully queued operation shall be:
46 The error status of a succesfully queued operation shall be:
51 The error status of a succesfully queued operation shall be:
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_read/
Dassertions.xml27 successfuly queued.
31 indicate error if the operation is not succesfully queued.
35 The requested AIO operation was not queued to the system
49 The error status of a succesfully queued operation shall be:
54 The error status of a succesfully queued operation shall be:
58 The error status of a succesfully queued operation shall be:
/external/bcc/tools/
Drunqlen.py210 queued = {} variable
217 queued[c] = 0
222 queued[k.cpu] += v.value
224 samples = idle[c] + queued[c]
226 runqocc = float(queued[c]) / samples
234 queued = 0 variable
239 queued += v.value
240 samples = idle + queued
242 runqocc = float(queued) / samples
Dbiolatency.py24 ./biolatency -Q # include OS queued time in I/O time
33 parser.add_argument("-Q", "--queued", action="store_true",
34 help="include OS queued time in I/O time")
116 if args.queued:
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwaitinfo/
D7-1.c9 signal shall be queued to the receiving process and that sigqueue returns 0.
17 - Call sigwaitinfo() NUMCALLS times, and verify that the queued signals are
79 ("Test FAILED: The queued value %d was dequeued before " in main()
80 "the queued value %d even though %d was queued first.\n", in main()
/external/libdaemon/libdaemon/
Ddsignal.h63 * block. Instead it returns 0 if no signal is queued.
64 * @return The next queued signal if one is queued, zero if none is
65 * queued, negative on failure.
71 * daemon_signal_next() to get the next signal queued.
/external/guava/android/guava/src/com/google/common/util/concurrent/
DSequentialExecutor.java19 import static com.google.common.util.concurrent.SequentialExecutor.WorkerRunningState.QUEUED;
53 /** Runnable is not running and not queued for execution */
55 /** Runnable is not running, but is being queued for execution */
58 QUEUED, enumConstant
76 * it would observe the QUEUING state and set it to QUEUED, and the worker would never be
103 if (workerRunningState == RUNNING || workerRunningState == QUEUED) { in execute()
160 workerRunningState = QUEUED; in execute()
192 * shutdown() by returning tasks queued on that Thread after {@link #worker} drains the queue.
209 // thread as QUEUED after it already ran and exhausted the queue before returning in workOnQueue()
/external/guava/guava/src/com/google/common/util/concurrent/
DSequentialExecutor.java19 import static com.google.common.util.concurrent.SequentialExecutor.WorkerRunningState.QUEUED;
53 /** Runnable is not running and not queued for execution */
55 /** Runnable is not running, but is being queued for execution */
58 QUEUED, enumConstant
76 * it would observe the QUEUING state and set it to QUEUED, and the worker would never be
103 if (workerRunningState == RUNNING || workerRunningState == QUEUED) { in execute()
160 workerRunningState = QUEUED; in execute()
192 * shutdown() by returning tasks queued on that Thread after {@link #worker} drains the queue.
209 // thread as QUEUED after it already ran and exhausted the queue before returning in workOnQueue()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_cp_dma.c441 if (sctx->queued.named.hs) { in cik_emit_prefetch_L2()
443 cik_prefetch_shader_async(sctx, sctx->queued.named.hs); in cik_emit_prefetch_L2()
452 cik_prefetch_shader_async(sctx, sctx->queued.named.gs); in cik_emit_prefetch_L2()
454 cik_prefetch_shader_async(sctx, sctx->queued.named.vs); in cik_emit_prefetch_L2()
455 } else if (sctx->queued.named.gs) { in cik_emit_prefetch_L2()
457 cik_prefetch_shader_async(sctx, sctx->queued.named.gs); in cik_emit_prefetch_L2()
466 cik_prefetch_shader_async(sctx, sctx->queued.named.vs); in cik_emit_prefetch_L2()
469 cik_prefetch_shader_async(sctx, sctx->queued.named.vs); in cik_emit_prefetch_L2()
482 cik_prefetch_shader_async(sctx, sctx->queued.named.ls); in cik_emit_prefetch_L2()
491 cik_prefetch_shader_async(sctx, sctx->queued.named.hs); in cik_emit_prefetch_L2()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-test/test/
DTestCoroutineDispatcherTest.kt15 assertEquals("TestCoroutineDispatcher[currentTime=0ms, queued=0]", subject.toString()) in whenStringCalled_itReturnsString()
22 assertEquals("TestCoroutineDispatcher[currentTime=1000ms, queued=0]", subject.toString()) in whenStringCalled_itReturnsCurrentTime()
33 assertEquals("TestCoroutineDispatcher[currentTime=0ms, queued=1]", subject.toString()) in whenStringCalled_itShowsQueuedJobs()
35 assertEquals("TestCoroutineDispatcher[currentTime=50ms, queued=1]", subject.toString()) in whenStringCalled_itShowsQueuedJobs()
37 assertEquals("TestCoroutineDispatcher[currentTime=1000ms, queued=0]", subject.toString()) in whenStringCalled_itShowsQueuedJobs()
/external/adhd/cras/src/tests/
Dhfp_info_unittest.cc75 unsigned buffer_frames, buffer_frames2, queued; in TEST() local
94 /* Assert the amount of frames of available buffer + queued buf is in TEST()
97 queued = hfp_buf_queued(info, dev.direction); in TEST()
100 ASSERT_GE(info->playback_buf->used_size / 2, buffer_frames + queued); in TEST()
102 /* Consume all queued data from read buffer */ in TEST()
103 buf_increment_read(info->playback_buf, queued * 2); in TEST()
105 queued = hfp_buf_queued(info, dev.direction); in TEST()
106 ASSERT_EQ(0, queued); in TEST()
312 /* Assert queued samples unchanged before output device added */ in TEST()
400 * still have right size of samples queued in TEST()
[all …]
/external/adhd/cras/src/server/
Dcras_a2dp_info.h19 * frame_count - Queued SBC frame count currently in a2dp buffer.
21 * samples - Queued PCM frame count currently in a2dp buffer.
58 * Gets the number of queued frames in a2dp_info.
63 * Drains queued samples in a2dp_info.
/external/blktrace/doc/
Dblktrace.tex163 Reads Queued: 0, 0KiB Writes Queued: 7, 128KiB
170 Reads Queued: 0, 0KiB Writes Queued: 1, 28KiB
177 Reads Queued: 0, 0KiB Writes Queued: 11, 168KiB
299 Reads Queued: 0, 0KiB Writes Queued: 9, 5,520KiB
305 Reads Queued: 2,411, 38,576KiB Writes Queued: 769, 425,408KiB
311 Reads Queued: 2, 32KiB Writes Queued: 18, 10,528KiB
317 Reads Queued: 20,572, 329,152KiB Writes Queued: 594, 279,712KiB
324 Reads Queued: 22,985, 367,760KiB Writes Queued: 1,390, 721,168KiB
534 \item[Q -- queued] This notes intent to queue io at the given location.
560 \item[P -- plug] When io is queued to a previously empty block device
[all …]
/external/libchrome/base/test/
Dscoped_task_environment_unittest.cc83 RunUntilIdleTest(GetParam(), ScopedTaskEnvironment::ExecutionMode::QUEUED); in TEST_P()
90 // Verify that tasks posted to an ExecutionMode::QUEUED ScopedTaskEnvironment do
94 GetParam(), ScopedTaskEnvironment::ExecutionMode::QUEUED); in TEST_P()
150 // Use a QUEUED execution-mode environment, so that no tasks are actually in TEST_P()
153 GetParam(), ScopedTaskEnvironment::ExecutionMode::QUEUED); in TEST_P()
210 // asynchronously, indicating a problem with the QUEUED execution mode. in TEST_P()
274 // Use a QUEUED execution-mode environment, so that no tasks are actually in TEST_F()
278 ScopedTaskEnvironment::ExecutionMode::QUEUED); in TEST_F()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwait/
Dassertions.xml10 supports queued signals), then the first such queued signal shall cause a
11 return from sigwait() and the remainder shall remain queued.
16 DOES NOT support queued signals), then there should be no remaining pending
/external/autotest/client/common_lib/
Dhost_queue_entry_states.py10 Status_list = ['Queued', 'Starting', 'Resetting', 'Verifying', 'Provisioning',
24 Status.PENDING, Status.QUEUED)
25 IDLE_PRE_JOB_STATUSES = (Status.PENDING, Status.QUEUED)
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/kgsl/adreno_cmdbatch_queued/
Dformat11 field:unsigned int queued; offset:16; size:4; signed:0;
14 print fmt: "ctx=%u ts=%u queued=%u flags=%s", REC->id, REC->timestamp, REC->queued, REC->flags ? __…
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/kgsl/adreno_cmdbatch_queued/
Dformat12 field:unsigned int queued; offset:20; size:4; signed:0;
15 print fmt: "ctx=%u ts=%u queued=%u flags=%s", REC->id, REC->timestamp, REC->queued, REC->flags ? __…
/external/mesa3d/include/android_stub/system/
Dwindow.h75 * to 1 if the ANativeWindow DOES send queued buffers directly to the window
81 * indicate that queued buffers will be protected from applications or users
263 /* Buffers will be queued by EGL via eglSwapBuffers after being filled using
268 /* Buffers will be queued after being filled using the CPU
272 /* Buffers will be queued by Stagefright after being filled by a video
277 /* Buffers will be queued by the the camera HAL.
432 * Buffers MUST be queued in the same order than they were dequeued.
602 * Sets which region of the next queued buffers needs to be considered.
607 * The specified crop region applies to all buffers queued after it is called.
609 * If 'crop' is NULL, subsequently queued buffers won't be cropped.
[all …]
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/kgsl/adreno_cmdbatch_queued/
Dformat11 field:unsigned int queued; offset:16; size:4; signed:0;
15 print fmt: "ctx=%u ctx_prio=%u ts=%u queued=%u flags=%s", REC->id, REC->prio, REC->timestamp, REC->
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DSampleQueue.java146 * samples queued after the reset (and before a subsequent call to {@link #format(Format)})
148 * must be called after the reset before any more samples can be queued.
178 /** Indicates samples that are subsequently queued should be spliced into those already queued. */
241 /** Returns the upstream {@link Format} in which samples are being queued. */
248 * Returns the largest sample timestamp that has been queued since the last {@link #reset}.
251 * considered as having been queued. Samples that were dequeued from the front of the queue are
252 * considered as having been queued.
254 * @return The largest sample timestamp that has been queued, or {@link Long#MIN_VALUE} if no
255 * samples have been queued.
262 * Returns whether the last sample of the stream has knowingly been queued. A return value of
[all …]
/external/python/cpython3/Doc/library/
Dtermios.rst47 immediately, :const:`TCSADRAIN` to change after transmitting all queued output,
48 or :const:`TCSAFLUSH` to change after transmitting all queued output and
49 discarding all queued input.
65 Discard queued data on file descriptor *fd*. The *queue* selector specifies
/external/python/cpython2/Doc/library/
Dtermios.rst47 immediately, :const:`TCSADRAIN` to change after transmitting all queued output,
48 or :const:`TCSAFLUSH` to change after transmitting all queued output and
49 discarding all queued input.
65 Discard queued data on file descriptor *fd*. The *queue* selector specifies

12345678910>>...31