/external/llvm-project/lldb/unittests/Process/ |
D | ProcessEventDataTest.cpp | 90 bool ShouldStop(Event *event_ptr) override { return m_should_stop; } in ShouldStop() function in __anon16148ecf0111::DummyStopInfo 102 bool ShouldStop(Event *event_ptr, bool &found_valid_stopinfo) override { in ShouldStop() function in __anon16148ecf0111::DummyProcessEventData 192 TEST_F(ProcessEventDataTest, ShouldStop) { in TEST_F() argument 218 event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F() 226 should_stop = event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F() 255 should_stop = event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F()
|
/external/llvm-project/clang-tools-extra/clangd/index/ |
D | BackgroundQueue.cpp | 26 CV.wait(Lock, [&] { return ShouldStop || !Queue.empty(); }); in work() 27 if (ShouldStop) { in work() 51 assert(ShouldStop || Stat.Completed == Stat.Enqueued); in work() 70 ShouldStop = true; in stop()
|
D | BackgroundRebuild.cpp | 102 ShouldStop = true; in shutdown() 110 if (!ShouldStop && Check()) { in maybeRebuild()
|
D | BackgroundRebuild.h | 84 bool ShouldStop = false; variable
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
D | POSIXStopInfo.cpp | 25 bool POSIXLimboStopInfo::ShouldStop(Event *event_ptr) { return false; } in ShouldStop() function in POSIXLimboStopInfo 42 bool POSIXNewThreadStopInfo::ShouldStop(Event *event_ptr) { return false; } in ShouldStop() function in POSIXNewThreadStopInfo
|
D | POSIXStopInfo.h | 41 bool ShouldStop(lldb_private::Event *event_ptr) override; 61 bool ShouldStop(lldb_private::Event *event_ptr) override;
|
/external/tensorflow/tensorflow/cc/training/ |
D | coordinator_test.cc | 41 EXPECT_EQ(coord.ShouldStop(), false); in TEST() 53 EXPECT_TRUE(coord.ShouldStop()); in TEST() 101 while (!coord_->ShouldStop() && counter->load() < until) { in CountThread() 156 EXPECT_EQ(coord.ShouldStop(), true); in TEST()
|
D | queue_runner.cc | 166 if (coord_ && coord_->ShouldStop()) { in Run() 188 if (IsQueueClosed(status) && (!coord_ || !coord_->ShouldStop())) { in Run()
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/poller/ |
D | eventmanager_libuv.cc | 55 if (ShouldStop()) return; in RunWorkerLoop() 61 bool grpc::experimental::LibuvEventManager::ShouldStop() { in ShouldStop() function in grpc::experimental::LibuvEventManager
|
D | eventmanager_libuv.h | 71 bool ShouldStop();
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleThreadPlanStepThroughObjCTrampoline.h | 40 bool ShouldStop(Event *event_ptr) override; 86 bool ShouldStop(Event *event_ptr) override;
|
D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 114 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { in ShouldStop() function in AppleThreadPlanStepThroughObjCTrampoline 354 bool AppleThreadPlanStepThroughDirectDispatch::ShouldStop(Event *event_ptr) { in ShouldStop() function in AppleThreadPlanStepThroughDirectDispatch 359 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr); in ShouldStop()
|
/external/llvm-project/lldb/source/Target/ |
D | StopInfo.cpp | 146 m_should_stop = bp_site_sp->ShouldStop(&context); in ShouldStopSynchronous() 250 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoBreakpoint 660 m_should_stop = wp_sp->ShouldStop(&context); in ShouldStopSynchronous() 676 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoWatchpoint 924 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoUnixSignal 1049 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoThreadPlan 1051 return m_plan_sp->ShouldStop(event_ptr); in ShouldStop() 1053 return StopInfo::ShouldStop(event_ptr); in ShouldStop() 1071 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoExec
|
D | ThreadPlanBase.cpp | 72 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanBase 147 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
|
D | ThreadPlanStepOut.cpp | 336 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanStepOut 352 return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop() 357 return m_step_through_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop() 362 return m_step_out_further_plan_sp->ShouldStop(event_ptr); in ShouldStop()
|
D | ThreadPlanCallOnFunctionExit.cpp | 59 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanCallOnFunctionExit
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | ThreadPlanCallOnFunctionExit.h | 38 bool ShouldStop(Event *event_ptr) override;
|
D | ThreadPlan.h | 363 virtual bool ShouldStop(Event *event_ptr) = 0; 587 bool ShouldStop(Event *event_ptr) override;
|
D | ThreadPlanStepOverRange.h | 30 bool ShouldStop(Event *event_ptr) override;
|
D | ThreadPlanBase.h | 30 bool ShouldStop(Event *event_ptr) override;
|
D | ThreadPlanStepOverBreakpoint.h | 25 bool ShouldStop(Event *event_ptr) override;
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointLocationCollection.cpp | 120 bool BreakpointLocationCollection::ShouldStop( in ShouldStop() function in BreakpointLocationCollection 127 if (GetByIndex(i)->ShouldStop(context)) in ShouldStop()
|
D | BreakpointSite.cpp | 50 bool BreakpointSite::ShouldStop(StoppointCallbackContext *context) { in ShouldStop() function in BreakpointSite 61 return owners_copy.ShouldStop(context); in ShouldStop()
|
D | BreakpointSiteList.cpp | 37 bool BreakpointSiteList::ShouldStop(StoppointCallbackContext *context, in ShouldStop() function in BreakpointSiteList 44 return site_sp->ShouldStop(context); in ShouldStop()
|
/external/llvm-project/lldb/source/Plugins/Process/mach-core/ |
D | ThreadMachCore.h | 35 bool ShouldStop(bool &step_more);
|