Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/lldb/unittests/Process/
H A DProcessEventDataTest.cpp87 bool ShouldStop(Event *event_ptr) override { return m_should_stop; } in ShouldStop() function in __anon0f15b5c80111::DummyStopInfo
99 bool ShouldStop(Event *event_ptr, bool &found_valid_stopinfo) override { in ShouldStop() function in __anon0f15b5c80111::DummyProcessEventData
184 TEST_F(ProcessEventDataTest, ShouldStop) { in TEST_F() argument
210 event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F()
218 should_stop = event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F()
247 should_stop = event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A 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()
H A DBackgroundRebuild.cpp78 ShouldStop = true; in shutdown()
86 if (!ShouldStop && Check()) { in maybeRebuild()
H A DBackgroundRebuild.h83 bool ShouldStop = false; variable
/llvm-project-15.0.7/lldb/source/Target/
H A DStopInfo.cpp158 m_should_stop = bp_site_sp->ShouldStop(&context); in ShouldStopSynchronous()
246 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoBreakpoint
713 m_should_stop = wp_sp->ShouldStop(&context); in ShouldStopSynchronous()
729 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoWatchpoint
974 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoUnixSignal
1123 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoThreadPlan
1125 return m_plan_sp->ShouldStop(event_ptr); in ShouldStop()
1127 return StopInfo::ShouldStop(event_ptr); in ShouldStop()
1144 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoExec
1179 bool ShouldStop(Event *event_ptr) override { return false; } in ShouldStop() function in lldb_private::StopInfoFork
[all …]
H A DThreadPlanBase.cpp73 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanBase
148 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
H A DThreadPlanStepOut.cpp337 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanStepOut
353 return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop()
358 return m_step_through_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop()
363 return m_step_out_further_plan_sp->ShouldStop(event_ptr); in ShouldStop()
H A DThreadPlanCallOnFunctionExit.cpp59 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanCallOnFunctionExit
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DClangdLSPServerTests.cpp276 bool ShouldStop = false; in TEST_F() member in clang::clangd::__anon7e5ef16f0111::TEST_F::AsyncCounter
286 CV.wait(Lock, [&] { return ShouldStop || !Queue.empty(); }); in TEST_F()
287 if (ShouldStop) { in TEST_F()
310 ShouldStop = true; in TEST_F()
325 EXPECT_TRUE(ShouldStop) << "ClangdServer should request shutdown"; in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h40 bool ShouldStop(Event *event_ptr) override;
93 bool ShouldStop(Event *event_ptr) override;
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp116 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { in ShouldStop() function in AppleThreadPlanStepThroughObjCTrampoline
359 bool AppleThreadPlanStepThroughDirectDispatch::ShouldStop(Event *event_ptr) { in ShouldStop() function in AppleThreadPlanStepThroughDirectDispatch
364 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr); in ShouldStop()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadPlan.h367 virtual bool ShouldStop(Event *event_ptr) = 0;
578 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanCallOnFunctionExit.h38 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanStepOverRange.h30 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanPython.h41 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanBase.h30 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanStepInstruction.h27 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanStepOverBreakpoint.h25 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanRunToAddress.h36 bool ShouldStop(Event *event_ptr) override;
H A DThreadPlanStepThrough.h23 bool ShouldStop(Event *event_ptr) override;
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DGlobalCompilationDatabase.cpp473 std::atomic<bool> ShouldStop = {false}; member in clang::clangd::DirectoryBasedGlobalCompilationDatabase::BroadcastThread
488 return (Stopping = ShouldStop.load(std::memory_order_acquire)) || in run()
539 ShouldStop.store(true, std::memory_order_release); in ~BroadcastThread()
660 std::atomic<bool> &ShouldStop) { in filter() argument
664 if (ShouldStop.load(std::memory_order_acquire)) { in filter()
712 Filter(T.PI.SourceRoot, Parent).filter(T.CDB->getAllFiles(), ShouldStop); in process()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointSite.cpp50 bool BreakpointSite::ShouldStop(StoppointCallbackContext *context) { in ShouldStop() function in BreakpointSite
61 return owners_copy.ShouldStop(context); in ShouldStop()
H A DBreakpointLocationCollection.cpp119 bool BreakpointLocationCollection::ShouldStop( in ShouldStop() function in BreakpointLocationCollection
129 if (cur_loc_sp->ShouldStop(context)) in ShouldStop()
H A DBreakpointSiteList.cpp37 bool BreakpointSiteList::ShouldStop(StoppointCallbackContext *context, in ShouldStop() function in BreakpointSiteList
44 return site_sp->ShouldStop(context); in ShouldStop()
/llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.h35 bool ShouldStop(bool &step_more);

1234