Home
last modified time | relevance | path

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

12345678910>>...28

/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
77 ("Test FAILED: The queued value %d was dequeued before " in main()
78 "the queued value %d even though %d was queued first.\n", in main()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_cp_dma.c532 cik_prefetch_shader_async(sctx, sctx->queued.named.hs); in cik_emit_prefetch_L2()
536 cik_prefetch_shader_async(sctx, sctx->queued.named.gs); in cik_emit_prefetch_L2()
538 cik_prefetch_shader_async(sctx, sctx->queued.named.vs); in cik_emit_prefetch_L2()
541 cik_prefetch_shader_async(sctx, sctx->queued.named.gs); in cik_emit_prefetch_L2()
545 cik_prefetch_shader_async(sctx, sctx->queued.named.vs); in cik_emit_prefetch_L2()
548 cik_prefetch_shader_async(sctx, sctx->queued.named.vs); in cik_emit_prefetch_L2()
557 cik_prefetch_shader_async(sctx, sctx->queued.named.ls); in cik_emit_prefetch_L2()
561 cik_prefetch_shader_async(sctx, sctx->queued.named.hs); in cik_emit_prefetch_L2()
563 cik_prefetch_shader_async(sctx, sctx->queued.named.es); in cik_emit_prefetch_L2()
565 cik_prefetch_shader_async(sctx, sctx->queued.named.gs); in cik_emit_prefetch_L2()
[all …]
/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/adhd/cras/src/tests/
Dhfp_info_unittest.cc64 unsigned buffer_frames, buffer_frames2, queued; in TEST() local
83 /* Assert the amount of frames of available buffer + queued buf is in TEST()
86 queued = hfp_buf_queued(info, &dev); in TEST()
89 ASSERT_GE(info->playback_buf->used_size / 2, buffer_frames + queued); in TEST()
91 /* Consume all queued data from read buffer */ in TEST()
92 buf_increment_read(info->playback_buf, queued * 2); in TEST()
94 queued = hfp_buf_queued(info, &dev); in TEST()
95 ASSERT_EQ(0, queued); in TEST()
293 /* Assert queued samples unchanged before output device added */ in TEST()
/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/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/autotest/scheduler/
Dprejob_task.py41 - Host: PreJob failure will result in a Repair job getting queued against
52 in the Queued state and setting its host_id to None, so it gets a new host
85 # where a queued HQE has special tasks to run against a host.
159 queued = models.SpecialTask.objects.filter(
162 queued = queued.exclude(id=self.task.id)
163 return queued.count() == 0
186 # Delete any queued manual reverifies for this host. One verify will do
279 # Delete any queued cleanups for this host.
283 # Delete any queued reverifies for this host.
426 # a. Another repair is queued: this repair job will set the host
Ddrones.py112 """Returns the calls queued against this drone.
114 @return: A list of calls queued against the drone.
133 """Execute queued calls.
135 If there are any processes queued to kill, kill them then process the
136 remaining queued up calls.
/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_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/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_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/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
/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/autotest/cli/
Djob_unittest.py38 {u'status_counts': {u'Queued': 1},
59 u'status_counts': {u'Queued': 1},
68 u'status_counts': {u'Queued': 1},
77 u'status_counts': {u'Queued': 1},
86 u'status_counts': {u'Queued': 1},
95 u'status_counts': {u'Queued': 1},
104 u'status_counts': {u'Queued': 1},
258 [{u'status_counts': {u'Queued': 1},
271 [{u'status': u'Queued',
297 [{u'status_counts': {u'Queued': 1},
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDomTreeUpdater.h78 /// Returns true if there are DominatorTree updates queued.
82 /// Returns true if there are PostDominatorTree updates queued.
145 /// Under Lazy UpdateStrategy, DelBB will be queued until a flush event and
148 /// will be queued until flush() is called.
155 /// Under Lazy UpdateStrategy, DelBB will be queued until a flush event and
157 /// modified while awaiting deletion. Multiple callbacks can be queued for one
227 /// UpdateStrategy. Returns true if the update is queued for update.
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLooper.java61 // Reset the schedulers of all loopers. This prevents un-run tasks queued up in static in resetThreadLoopers()
153 * to the looper will not execute immediately, but will be queued in a way that is similar to how
154 * a real looper works. These queued tasks must be executed explicitly by calling {@link
167 * thread instead of being queued, in a way similar to how Guava's "DirectExecutorService" works.
225 * Runs any immediately runnable tasks previously queued on the UI thread,
237 … runnable tasks (pending and future) that have been queued on the UI thread. Such tasks may be que…
/external/libchrome/mojo/core/ports/
Dmessage_queue.h60 // Takes all messages from this queue. Used to safely destroy queued messages in COMPONENT_EXPORT()
65 // The number of messages queued here, regardless of whether the next expected in COMPONENT_EXPORT()
69 // The aggregate memory size in bytes of all messages queued here, regardless in COMPONENT_EXPORT()

12345678910>>...28