Home
last modified time | relevance | path

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

123

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DSharedFlow.kt323 var resumes: Array<Continuation<Unit>?> = EMPTY_RESUMES in tryEmit() variable
326 resumes = findSlotsToResumeLocked(resumes) in tryEmit()
332 for (cont in resumes) cont?.resume(Unit) in tryEmit()
417 var resumes: Array<Continuation<Unit>?> = EMPTY_RESUMES in emitSuspend() variable
422 resumes = findSlotsToResumeLocked(resumes) in emitSuspend()
430 if (bufferCapacity == 0) resumes = findSlotsToResumeLocked(resumes) in emitSuspend()
436 for (cont in resumes) cont?.resume(Unit) in emitSuspend()
481 var resumes: Array<Continuation<Unit>?> = EMPTY_RESUMES in updateCollectorIndexLocked() variable
484 resumes = arrayOfNulls(maxResumeCount) in updateCollectorIndexLocked()
491 resumes[resumeCount++] = emitter.cont in updateCollectorIndexLocked()
[all …]
/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/autotest/server/site_tests/network_WiFi_WakeOnWiFiThrottling/
Dcontrol15 dark resumes per 1 minute and 10 dark resumes per 10 minutes respectively.
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
DAbstractSharedFlow.kt78 val resumes = synchronized(this) { in freeSlot() constant
90 for (cont in resumes) cont?.resume(Unit) in freeSlot()
/external/autotest/server/site_tests/network_WiFi_DarkResumeActiveScans/
Dcontrol31 This test attempts to verify that no active scans are started in dark resumes
34 DUT does not launch any probe requests during these dark resumes.
/external/libchrome/base/test/
Dpower_monitor_test_base.h43 int resumes() { return resumes_; } in resumes() function
/external/kotlinx.atomicfu/atomicfu/src/jvmMain/kotlin/kotlinx/atomicfu/
DLockFreedomTestEnvironment.kt159 val resumes = performedResumes in <lambda>() constant
160 return if (resumes == 0) "" else " (pause/resumes $resumes)" in <lambda>()
/external/autotest/server/site_tests/power_USBHotplugInSuspend/
Dcontrol24 Servo is then used to power on/off the USB key. After the client resumes, it
/external/oboe/docs/notes/
Ddisconnect.md42 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/llvm-project/llvm/test/CodeGen/X86/
Ddwarf-eh-prepare.ll4 ; eliminate resumes. This pass requires a TargetMachine, so we put it under X86
/external/llvm-project/llvm/docs/
DDebuggingJITedCode.rst23 the inferior's memory, and resumes the execution. In this way, GDB can get the
/external/llvm/docs/
DDebuggingJITedCode.rst23 the inferior's memory, and resumes the execution. In this way, GDB can get the
/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/arm-trusted-firmware/docs/components/
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/llvm-project/llvm/test/Transforms/Coroutines/
Dno-suspend.ll42 ; SimplifySuspendPoint will detect that coro.resume resumes itself and will
151 ; SimplifySuspendPoint will detect that coro.resume resumes itself and will
/external/libwebsockets/lib/misc/threadpool/
DREADME.md153 to stop immediately after it resumes.
/external/toolchain-utils/llvm_tools/
DREADME.md286 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/perfetto/protos/perfetto/config/
Dtrace_config.proto110 // happen immediately after the device resumes.
/external/python/cpython2/Doc/library/
Dpdb.rst287 continue command, or step, or any other command that resumes execution.

123