Home
last modified time | relevance | path

Searched refs:resumes (Results 1 – 25 of 69) sorted by relevance

123

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DSharedFlow.kt390 var resumes: Array<Continuation<Unit>?> = EMPTY_RESUMES in tryEmit() variable
393 resumes = findSlotsToResumeLocked(resumes) in tryEmit()
399 for (cont in resumes) cont?.resume(Unit) in tryEmit()
484 var resumes: Array<Continuation<Unit>?> = EMPTY_RESUMES in emitSuspend() variable
489 resumes = findSlotsToResumeLocked(resumes) in emitSuspend()
497 if (bufferCapacity == 0) resumes = findSlotsToResumeLocked(resumes) in emitSuspend()
503 for (r in resumes) r?.resume(Unit) in emitSuspend()
548 var resumes: Array<Continuation<Unit>?> = EMPTY_RESUMES in updateCollectorIndexLocked() variable
551 resumes = arrayOfNulls(maxResumeCount) in updateCollectorIndexLocked()
558 resumes[resumeCount++] = emitter.cont in updateCollectorIndexLocked()
[all …]
/external/cronet/base/power_monitor/
Dpower_monitor_unittest.cc50 EXPECT_EQ(observers[0].resumes(), 0); in TEST_F()
64 EXPECT_EQ(observers[0].resumes(), 1); in TEST_F()
68 EXPECT_EQ(observers[0].resumes(), 1); in TEST_F()
162 EXPECT_EQ(observer1.resumes(), 0); in TEST_F()
163 EXPECT_EQ(observer2.resumes(), 0); in TEST_F()
166 EXPECT_EQ(observer1.resumes(), 1); in TEST_F()
167 EXPECT_EQ(observer2.resumes(), 1); in TEST_F()
215 EXPECT_EQ(observer1.resumes(), 0); in TEST_F()
216 EXPECT_EQ(observer2.resumes(), 0); in TEST_F()
/external/libchrome/base/power_monitor/
Dpower_monitor_unittest.cc44 EXPECT_EQ(observers[0].resumes(), 0); in TEST_F()
58 EXPECT_EQ(observers[0].resumes(), 1); in TEST_F()
62 EXPECT_EQ(observers[0].resumes(), 1); in TEST_F()
/external/arm-trusted-firmware/docs/resources/diagrams/plantuml/
Dsdei_general.puml38 EL3->EL2: resumes preempted execution
41 ... <<Normal execution resumes>> ...
Dsdei_explicit_dispatch.puml47 EL3->EL2: resumes preempted execution
49 ... <<Normal execution resumes>> ...
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
DAbstractSharedFlow.kt76 val resumes = synchronized(this) { in freeSlot() constant
88 for (cont in resumes) cont?.resume(Unit) in freeSlot()
/external/libchrome/base/test/
Dpower_monitor_test_base.h43 int resumes() { return resumes_; } in resumes() function
/external/pigweed/pw_snapshot/
Ddocs.rst47 #. **Device resumes** - After a snapshot is stored, the device resumes normal
/external/cronet/base/test/
Dpower_monitor_test.h83 int resumes() const { return resumes_; } in resumes() function
/external/autotest/server/site_tests/power_USBHotplugInSuspend/
Dcontrol25 Servo is then used to power on/off the USB key. After the client resumes, it
/external/oboe/docs/notes/
Ddisconnect.md44 You can register for the Intent when your app resumes and unregister when it pauses.
/external/llvm/test/CodeGen/X86/
Ddwarf-eh-prepare.ll4 ; eliminate resumes. This pass requires a TargetMachine, so we put it under X86
/external/arm-trusted-firmware/docs/components/
Dsecure-partition-manager.rst966 | | | | resumes execution context of SP |
971 | | | | resumes execution context of SP |
977 | RUNNING | ERET, | NA | SPMC pends the vIRQ signal and resumes|
998 of target SP, SPMC resumes current SP after signal completion by target SP
1047 interrupt and resumes SP vCPU.
1050 - 11) EL3 resumes normal world execution.
1064 SPMC further resumes SP1 through ERET conduit.
1069 and resumes SP1 vCPU.
1072 - 9) SPMC resumes the pre-empted vCPU of SP2.
Dsdei.rst40 ``SDEI_EVENT_COMPLETE`` [11], following which the dispatcher resumes the
245 met), and when the handler completes, the preempted execution resumes.
Dexception-handling.rst388 through an ``ERET``, resumes execution before the interrupt occurred.
481 handled, and Non-secure execution resumes after ``SMC`` instruction.
Dfirmware-update.rst325 This SMC resumes execution in the other security world while there is a secure
/external/pigweed/pw_sync_freertos/
Ddocs.rst116 resumes, any tasks that were unblocked while the scheduler was suspended
117 are processed immediately, and rescheduling/preemption resumes at that time.
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/
Ddebug-logging.md64 user pauses playback after 9.4 seconds, and resumes playback one second later at
/external/llvm/docs/
DDebuggingJITedCode.rst23 the inferior's memory, and resumes the execution. In this way, GDB can get the
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/
Ddebug-logging.md61 user pauses playback after 9.4 seconds, and resumes playback one second later at
/external/angle/src/libANGLE/renderer/vulkan/doc/
DQueries.md18 of currently active "render pass queries" and automatically pauses and resumes them as render passes
/external/libwebsockets/lib/misc/threadpool/
DREADME.md153 to stop immediately after it resumes.
/external/toolchain-utils/llvm_tools/
DREADME.md252 exists, the script resumes bisection. Otherwise, the script creates the file
/external/arm-trusted-firmware/docs/design/
Dinterrupt-framework-design.rst568 resumes in the non-secure state.
751 should handle this secure monitor call so that execution resumes in the
963 SMC64 with ``TSP_PREEMPTED`` as the function identifier. Execution resumes at
/external/python/cpython2/Doc/library/
Dpdb.rst287 continue command, or step, or any other command that resumes execution.

123