Home
last modified time | relevance | path

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

/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/time/
DStopWatch.java103 SUSPENDED { enumConstant
284 if (this.runningState == State.STOPPED || this.runningState == State.SUSPENDED) { in getNanoTime()
455 if (this.runningState != State.SUSPENDED) { in resume()
514 if (this.runningState != State.RUNNING && this.runningState != State.SUSPENDED) { in stop()
541 this.runningState = State.SUSPENDED; in suspend()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DDebugCoroutineInfoImpl.kt13 internal const val SUSPENDED = "SUSPENDED" constant
93 } else if (unmatchedResume > 0 && state == SUSPENDED) { in updateState()
117 if (_state == state && state == SUSPENDED && lastObservedFrame != null) return in updateState()
DDebugProbesImpl.kt422 internal fun probeCoroutineSuspended(frame: Continuation<*>) = updateState(frame, SUSPENDED) in <lambda>()
/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/common/src/
DBuilders.common.kt217 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.kt14 private const val SUSPENDED = 1 in <lambda>() constant
278 …CIDED -> if (this._decisionAndIndex.compareAndSet(cur, decisionAndIndex(SUSPENDED, cur.index))) re… in <lambda>()
289 SUSPENDED -> return false in <lambda>()
/external/android-key-attestation/server/src/test/java/com/google/android/attestation/
DCertificateRevocationStatusTest.java67 assertThat(statusEntry.status).isEqualTo(Status.SUSPENDED); in loadTestSerial()
97 .isEqualTo(CertificateRevocationStatus.Status.SUSPENDED); in loadAllTestEntries()
/external/kotlinx.coroutines/kotlinx-coroutines-debug/src/
DCoroutineInfo.kt91 SUSPENDED in toString()
/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/
DDebugProbesTest.kt119 assertEquals(setOf(State.RUNNING, State.SUSPENDED), infos.map { it.state }.toSet()) in testMultipleConsecutiveProbeResumed()
/external/pigweed/pw_thread_threadx/
Dsnapshot.cc64 encoder.WriteState(proto::ThreadState::Enum::SUSPENDED); in CaptureThreadState()
/external/pigweed/pw_thread_embos/
Dsnapshot.cc65 encoder.WriteState(proto::ThreadState::Enum::SUSPENDED); in CaptureThreadState()
/external/kotlinx.coroutines/docs/topics/
Ddebug-coroutines-with-idea.md89 …* The first coroutine has the **SUSPENDED** status – it is waiting for the values so it can multip…
98 …* The first coroutine has the **SUSPENDED** status – it is waiting for the values so it can multip…
Ddebug-flow-with-idea.md152 …ter coroutine has the **RUNNING** status, and the collector coroutine has the **SUSPENDED** status.
158 …tor coroutine has the **RUNNING** status, while the emitter coroutine has the **SUSPENDED** status.
/external/android-key-attestation/server/src/main/java/com/google/android/attestation/
DCertificateRevocationStatus.java122 REVOKED, SUSPENDED enumConstant
/external/pigweed/pw_thread_freertos/
Dsnapshot.cc66 encoder.WriteState(proto::ThreadState::Enum::SUSPENDED).IgnoreError(); in CaptureThreadState()
/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/pigweed/pw_thread/py/pw_thread/
Dthread_analyzer.py28 thread_pb2.ThreadState.Enum.SUSPENDED: 'SUSPENDED',
/external/kotlinx.coroutines/kotlinx-coroutines-debug/api/
Dkotlinx-coroutines-debug.api41 public static final field SUSPENDED Lkotlinx/coroutines/debug/State;
/external/pigweed/pw_thread/pw_thread_protos/
Dthread.proto38 SUSPENDED = 4; enumerator
/external/oj-libjdwp/src/share/back/
Dutil.c2326 status = JDWP_SUSPEND_STATUS(SUSPENDED); in map2jdwpSuspendStatus()