Home
last modified time | relevance | path

Searched refs:scheduled (Results 1 – 25 of 185) sorted by relevance

12345678

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowRenderNodeAnimator.java23 private boolean scheduled = false; field in ShadowRenderNodeAnimator
89 if (!scheduled) { in schedule()
90 scheduled = true; in schedule()
96 if (scheduled) { in unschedule()
98 scheduled = false; in unschedule()
105 scheduled = false;
/external/grpc-grpc/src/core/lib/iomgr/
Dclosure.h95 bool scheduled; member
118 closure->scheduled = false;
283 if (c->scheduled) {
292 c->scheduled = true;
322 if (c->scheduled) {
330 c->scheduled = true;
Dcombiner.cc258 cl->scheduled = false; in grpc_combiner_continue_exec_ctx()
274 c->scheduled = false; in grpc_combiner_continue_exec_ctx()
350 closure->scheduled = false; in combiner_run()
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DWriteQueue.java50 private final AtomicBoolean scheduled = new AtomicBoolean(); field in WriteQueue
61 if (scheduled.compareAndSet(false, true)) { in scheduleFlush()
128 scheduled.set(false); in flush()
/external/guava/guava/src/com/google/common/util/concurrent/
DMoreExecutors.java569 ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit); in schedule() local
570 return new ListenableScheduledTask<Void>(task, scheduled); in schedule()
577 ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit); in schedule() local
578 return new ListenableScheduledTask<V>(task, scheduled); in schedule()
586 ScheduledFuture<?> scheduled = in scheduleAtFixedRate() local
588 return new ListenableScheduledTask<Void>(task, scheduled); in scheduleAtFixedRate()
596 ScheduledFuture<?> scheduled = in scheduleWithFixedDelay() local
598 return new ListenableScheduledTask<Void>(task, scheduled); in scheduleWithFixedDelay()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
Dswp-kernel-phi1.ll5 ; as its loop definition, and the two phis are scheduled in different stages.
7 ; vreg5 = phi(x, vreg4) is scheduled in stage 1, cycle 0
8 ; vreg4 = phi(y, z) is scheduled in stage 0, cycle 0
Dswp-epilog-phi8.ll5 ; scheduled in stage 2, but the loop definition in scheduled in stage 0). The
/external/llvm/test/CodeGen/X86/
Dmisched-fusion.ll3 ; Verify that TEST+JE are scheduled together.
28 ; Verify that DEC+JE are scheduled together.
55 ; DEC+JS should *not* be scheduled together.
83 ; Verify that CMP+JB are scheduled together.
Dtestb-je-fusion.ll3 ; testb should be scheduled right before je to enable macro-fusion.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dmisched-fusion.ll3 ; Verify that TEST+JE are scheduled together.
28 ; Verify that DEC+JE are scheduled together.
55 ; DEC+JS should *not* be scheduled together.
83 ; Verify that CMP+JB are scheduled together.
/external/python/cpython3/Doc/library/
Dsched.rst71 Events scheduled for the same *time* will be executed in the order of their
113 Run all scheduled events. This method will wait (using the :func:`delayfunc`
115 on until there are no more scheduled events.
117 If *blocking* is false executes the scheduled events due to expire soonest
118 (if any) and then return the deadline of the next scheduled call in the
Dasyncio-dev.rst50 <asyncio-coroutine-not-scheduled>` and logs them; this mitigates
141 .. _asyncio-coroutine-not-scheduled:
148 or the coroutine is not scheduled with :meth:`asyncio.create_task`, asyncio
154 print("never scheduled")
Dasyncio-task.rst161 scheduled to run soon::
276 The *loop* argument is deprecated and scheduled for removal
308 scheduled as a Task.
380 If *aw* is a coroutine it is automatically scheduled as a Task.
417 If *aw* is a coroutine it is automatically scheduled as a Task.
434 The *loop* argument is deprecated and scheduled for removal
476 scheduled as a Task. Passing coroutines objects to
486 The *loop* argument is deprecated and scheduled for removal
863 is scheduled for removal in Python 3.10.
888 This decorator is **deprecated** and is scheduled for removal in
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
DScheduler.java207 for (ScheduledRunnable scheduled : runnables) { in advanceToLastPostedRunnable()
208 if (currentMaxTime < scheduled.scheduledTime) { in advanceToLastPostedRunnable()
209 currentMaxTime = scheduled.scheduledTime; in advanceToLastPostedRunnable()
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
DTestServiceImpl.java243 private boolean scheduled;
257 scheduled = false;
265 scheduled = false;
357 if (scheduled) {
365 scheduled = true;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
DlowerMUL-newload.ll11 ; scheduled before the first vector store to "a[i] = b[i] + c[i]".
12 ; Checking that there is no vector load a[i] scheduled between the vector
67 ; is scheduled before the first vector store to "a[i] = b[i] + c[i]".
68 ; Checking that there is no vector load a[i] scheduled between the first
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dmisched-fusion.ll9 ; Make sure cmp is scheduled in front of bcc
28 ; Make sure sub is scheduled in front of cbnz
Dsched-past-vector-ldst.ll4 ; being scheduled together. Since the vector loads and stores generated from
6 ; This allows fmla instructions to be scheduled together.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dlds-output-queue.ll38 ; scheduled one after the other, but they do need to be scheduled in the same
66 ; the global memory read will always be scheduled first. This will give us a
/external/llvm/test/CodeGen/AMDGPU/
Dlds-output-queue.ll38 ; scheduled one after the other, but they do need to be scheduled in the same
66 ; the global memory read will always be scheduled first. This will give us a
/external/libbrillo/brillo/message_loops/
Dbase_message_loop.cc135 bool scheduled = it_bool.first->second.StartWatching(); in WatchFileDescriptor() local
141 << (scheduled ? " successfully" : " failed."); in WatchFileDescriptor()
143 if (!scheduled) { in WatchFileDescriptor()
/external/python/cpython2/Doc/library/
Dsched.rst86 Events scheduled for the same *time* will be executed in the order of their
116 Run all scheduled events. This function will wait (using the :func:`delayfunc`
118 on until there are no more scheduled events.
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_sched.c57 struct ir3_instruction *scheduled; /* last scheduled instr XXX remove*/ member
88 if (ctx->scheduled && is_sfu_or_mem(ctx->scheduled) && is_sfu_or_mem(instr)) in schedule()
108 ctx->scheduled = instr; in schedule()
/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-02-16-14-37-14.bpo-32857.-XljAx.rst1 …l(None)`` now raises a :exc:`ValueError` instead of canceling the first scheduled function. Patch…
/external/autotest/client/site_tests/performance_Tracker/
Dcontrol7 PURPOSE = "Records cpu and memory usage for manually scheduled test."

12345678