Home
last modified time | relevance | path

Searched refs:Paused (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
DThread.cpp50 state_ = State::Paused; in onLocationUpdate()
56 case State::Paused: in onLocationUpdate()
57 lock.wait(stateCV, [this]() REQUIRES(mutex) { return state_ != State::Paused; }); in onLocationUpdate()
77 state_ = State::Paused; in onLocationUpdate()
78 lock.wait(stateCV, [this]() REQUIRES(mutex) { return state_ != State::Paused; }); in onLocationUpdate()
107 state_ = State::Paused; in enter()
185 state_ = State::Paused; in pause()
DThread.hpp117 Paused // Thread is currently paused. enumerator
/third_party/skia/third_party/externals/oboe/tests/
DtestStreamStates.cpp178 ASSERT_EQ(next, StreamState::Paused); in TEST_F()
252 EXPECT_EQ(next, StreamState::Paused); in TEST_F()
260 ASSERT_EQ(next, StreamState::Paused); in TEST_F()
DtestStreamWaitState.cpp111 || next == StreamState::Paused in checkCloseWhileWaiting()
/third_party/lzma/CPP/7zip/UI/FileManager/
DProgressDialog2.rc35 IDS_PROGRESS_PAUSED "Paused"
/third_party/mesa3d/src/mesa/main/
Dtransformfeedback.c515 ctx->TransformFeedback.CurrentObject->Paused = GL_FALSE; in end_transform_feedback()
1255 obj->Paused = GL_TRUE; in pause_transform_feedback()
1296 obj->Paused = GL_FALSE; in resume_transform_feedback()
1326 if (!obj->Active || !obj->Paused) { in _mesa_ResumeTransformFeedback()
1360 *param = obj->Paused; in _mesa_GetTransformFeedbackiv()
Dtransformfeedback.h83 !ctx->TransformFeedback.CurrentObject->Paused; in _mesa_is_xfb_active_and_unpaused()
Dmtypes.h1895 GLboolean Paused; /**< Is transform feedback paused? */ member
Dget.c1084 v->value_int = ctx->TransformFeedback.CurrentObject->Paused; in find_custom_value()
/third_party/node/deps/v8/src/inspector/
Dv8-debugger-agent-impl.cc1164 pushBreakDetails(protocol::Debugger::Paused::ReasonEnum::Other, nullptr); in pause()
1753 String16 breakReason = protocol::Debugger::Paused::ReasonEnum::Other; in didPauseOnInstrumentation()
1765 breakReason = protocol::Debugger::Paused::ReasonEnum::Instrumentation; in didPauseOnInstrumentation()
1797 std::make_pair(protocol::Debugger::Paused::ReasonEnum::OOM, nullptr)); in didPause()
1800 protocol::Debugger::Paused::ReasonEnum::Assert, nullptr)); in didPause()
1807 ? protocol::Debugger::Paused::ReasonEnum::PromiseRejection in didPause()
1808 : protocol::Debugger::Paused::ReasonEnum::Exception; in didPause()
1838 protocol::Debugger::Paused::ReasonEnum::DebugCommand, nullptr)); in didPause()
1851 std::make_pair(protocol::Debugger::Paused::ReasonEnum::Other, nullptr); in didPause()
1857 std::make_pair(protocol::Debugger::Paused::ReasonEnum::Other, nullptr)); in didPause()
[all …]
/third_party/skia/third_party/externals/oboe/src/opensles/
DAudioOutputStreamOpenSLES.cpp325 case StreamState::Paused: in requestPause()
341 setState(StreamState::Paused); in requestPause()
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
Dtarget.h76 Paused, // The command was processed, debuggee still paused. enumerator
Dtarget.cc173 case ProcessPacketResult::Paused: in ProcessCommands()
450 return ProcessPacketResult::Paused; in ProcessPacket()
/third_party/skia/third_party/externals/oboe/include/oboe/
DDefinitions.h65 Paused = 6, // AAUDIO_STREAM_STATE_PAUSED, enumerator
/third_party/skia/third_party/externals/oboe/src/common/
DAudioStream.cpp120 StreamState::Paused, timeoutNanoseconds); in pause()
DUtilities.cpp151 case StreamState::Paused: return "Paused"; in convertToText()
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAAudioLoader.cpp260 static_assert((int32_t)StreamState::Paused == AAUDIO_STREAM_STATE_PAUSED, ERRMSG);
DAudioStreamAAudio.cpp371 if (state == StreamState::Pausing || state == StreamState::Paused) { in requestPause()
/third_party/skia/third_party/externals/oboe/docs/
DFullGuide.md208 * Paused
250 the transient state Pausing, and arrive sometime later at the Paused state - though there's no guar…
251 Since you can't wait for the Paused state, use `waitForStateChange()` to wait for *any state
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemorySSA.cpp862 for (ListIndex Paused : NewPaused) { in tryOptimizePhi() local
863 UpwardsWalkResult WR = walkToPhiOrClobber(Paths[Paused]); in tryOptimizePhi()
865 Clobbers.push_back({WR.Result, Paused}); in tryOptimizePhi()