Home
last modified time | relevance | path

Searched refs:ShouldStop (Results 1 – 25 of 81) sorted by relevance

1234

/external/llvm-project/lldb/unittests/Process/
DProcessEventDataTest.cpp90 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/
DBackgroundQueue.cpp26 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()
DBackgroundRebuild.cpp102 ShouldStop = true; in shutdown()
110 if (!ShouldStop && Check()) { in maybeRebuild()
DBackgroundRebuild.h84 bool ShouldStop = false; variable
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DPOSIXStopInfo.cpp25 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
DPOSIXStopInfo.h41 bool ShouldStop(lldb_private::Event *event_ptr) override;
61 bool ShouldStop(lldb_private::Event *event_ptr) override;
/external/tensorflow/tensorflow/cc/training/
Dcoordinator_test.cc41 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()
Dqueue_runner.cc166 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/
Deventmanager_libuv.cc55 if (ShouldStop()) return; in RunWorkerLoop()
61 bool grpc::experimental::LibuvEventManager::ShouldStop() { in ShouldStop() function in grpc::experimental::LibuvEventManager
Deventmanager_libuv.h71 bool ShouldStop();
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.h40 bool ShouldStop(Event *event_ptr) override;
86 bool ShouldStop(Event *event_ptr) override;
DAppleThreadPlanStepThroughObjCTrampoline.cpp114 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/
DStopInfo.cpp146 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
DThreadPlanBase.cpp72 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanBase
147 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
DThreadPlanStepOut.cpp336 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()
DThreadPlanCallOnFunctionExit.cpp59 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanCallOnFunctionExit
/external/llvm-project/lldb/include/lldb/Target/
DThreadPlanCallOnFunctionExit.h38 bool ShouldStop(Event *event_ptr) override;
DThreadPlan.h363 virtual bool ShouldStop(Event *event_ptr) = 0;
587 bool ShouldStop(Event *event_ptr) override;
DThreadPlanStepOverRange.h30 bool ShouldStop(Event *event_ptr) override;
DThreadPlanBase.h30 bool ShouldStop(Event *event_ptr) override;
DThreadPlanStepOverBreakpoint.h25 bool ShouldStop(Event *event_ptr) override;
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointLocationCollection.cpp120 bool BreakpointLocationCollection::ShouldStop( in ShouldStop() function in BreakpointLocationCollection
127 if (GetByIndex(i)->ShouldStop(context)) in ShouldStop()
DBreakpointSite.cpp50 bool BreakpointSite::ShouldStop(StoppointCallbackContext *context) { in ShouldStop() function in BreakpointSite
61 return owners_copy.ShouldStop(context); in ShouldStop()
DBreakpointSiteList.cpp37 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/
DThreadMachCore.h35 bool ShouldStop(bool &step_more);

1234