Home
last modified time | relevance | path

Searched refs:SUSPENDED (Results 1 – 11 of 11) sorted by relevance

/external/libchrome/base/memory/
Dmemory_coordinator_client.h45 SUSPENDED = 2, enumerator
48 const int kMemoryStateMax = static_cast<int>(MemoryState::SUSPENDED) + 1;
Dmemory_coordinator_client.cc19 case MemoryState::SUSPENDED: in MemoryStateToString()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DDebugCoroutineInfoImpl.kt13 internal const val SUSPENDED = "SUSPENDED" constant
89 if (_state == state && state == SUSPENDED && lastObservedFrame != null) return in updateState()
DDebugProbesImpl.kt344 internal fun probeCoroutineSuspended(frame: Continuation<*>) = updateState(frame, SUSPENDED) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DBuilders.common.kt220 private const val SUSPENDED = 1 constant
235 UNDECIDED -> if (this._decision.compareAndSet(UNDECIDED, SUSPENDED)) return true in trySuspend()
246 SUSPENDED -> return false in tryResume()
DCancellableContinuationImpl.kt15 private const val SUSPENDED = 1 in <lambda>() constant
253 UNDECIDED -> if (this._decision.compareAndSet(UNDECIDED, SUSPENDED)) return true in <lambda>()
264 SUSPENDED -> return false in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-debug/src/
DCoroutineInfo.kt91 SUSPENDED in toString()
/external/llvm-project/mlir/test/Conversion/AsyncToLLVM/
Dconvert-to-llvm.mlir44 // CHECK: %[[SUSPENDED:.*]] = llvm.call @llvm.coro.suspend(%[[STATE]]
49 // CHECK: %[[IS_NONE:.*]] = llvm.icmp "eq" %[[SUSPENDED]], %[[NONE]]
54 // CHECK: %[[IS_ZERO:.*]] = llvm.icmp "eq" %[[SUSPENDED]], %[[ZERO]]
/external/kotlinx.coroutines/kotlinx-coroutines-debug/
DREADME.md121 Coroutine "coroutine#2":DeferredCoroutine{Active}@289d1c02, state: SUSPENDED
140 "coroutine#2":DeferredCoroutine{Active}, continuation is SUSPENDED at line kotlinx.coroutines.Defer…
141 …"coroutine#3":DeferredCoroutine{Active}, continuation is SUSPENDED at line ExampleKt.computeOne(Ex…
142 …"coroutine#4":DeferredCoroutine{Active}, continuation is SUSPENDED at line ExampleKt.computeTwo(Ex…
/external/kotlinx.coroutines/kotlinx-coroutines-debug/api/
Dkotlinx-coroutines-debug.api39 public static final field SUSPENDED Lkotlinx/coroutines/debug/State;
/external/oj-libjdwp/src/share/back/
Dutil.c2318 status = JDWP_SUSPEND_STATUS(SUSPENDED); in map2jdwpSuspendStatus()