Home
last modified time | relevance | path

Searched refs:GetStopID (Results 1 – 25 of 35) sorted by relevance

12

/llvm-project/lldb/test/API/lang/c/stepping/
H A DTestStepAndBreakpoints.py73 old_stop_id = process.GetStopID()
84 new_stop_id = process.GetStopID()
104 stop_id_before_expression = process.GetStopID()
105 stop_id_before_including_expressions = process.GetStopID(True)
133 stop_id_after_expression = process.GetStopID()
134 stop_id_after_including_expressions = process.GetStopID(True)
/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp433 if (m_process->GetStopID() == m_dyld_all_image_infos_stop_id) in ReadAllImageInfosStructure()
543 m_dyld_all_image_infos_stop_id = m_process->GetStopID(); in ReadAllImageInfosStructure()
558 if (m_process->GetStopID() == m_dyld_image_infos_stop_id) in AddModulesUsingImageInfosAddress()
579 m_dyld_image_infos_stop_id = m_process->GetStopID(); in AddModulesUsingImageInfosAddress()
588 m_dyld_image_infos_stop_id = m_process->GetStopID(); in RemoveModulesUsingImageInfosAddress()
599 if (m_process->GetStopID() == m_dyld_image_infos_stop_id) in RemoveModulesUsingImageInfosAddress()
675 m_dyld_image_infos_stop_id = m_process->GetStopID(); in ReadImageInfos()
726 if (m_process->GetStopID() == m_dyld_image_infos_stop_id || in InitializeFromAllImageInfos()
H A DDynamicLoaderDarwin.cpp174 if (m_process->GetStopID() == m_dyld_image_infos_stop_id) in UnloadImages()
215 m_dyld_image_infos_stop_id = m_process->GetStopID(); in UnloadAllImages()
245 m_dyld_image_infos_stop_id = m_process->GetStopID(); in UpdateImageLoadAddress()
318 if (info.load_stop_id == m_process->GetStopID()) in UnloadModuleSections()
322 info.load_stop_id = m_process->GetStopID(); in UnloadModuleSections()
741 image_info.load_stop_id = m_process->GetStopID(); in AlwaysRelyOnEHUnwindInfo()
H A DDynamicLoaderMacOS.cpp224 m_dyld_image_infos_stop_id = m_process->GetStopID(); in DoInitialImageFetch()
257 process->GetStopID() < dyld_instance->m_image_infos_stop_id) { in NotifyBreakpointHit()
433 m_dyld_image_infos_stop_id = m_process->GetStopID(); in AddBinaries()
/llvm-project/lldb/test/API/functionalities/step_scripted/
H A DTestStepScripted.py53 stop_id = process.GetStopID()
63 self.assertEqual(stop_id, process.GetStopID(), "Process didn't run")
/llvm-project/lldb/source/Target/
H A DRegisterContext.cpp28 m_stop_id(thread.GetProcess()->GetStopID()) {} in RegisterContext()
38 process_stop_id = process_sp->GetStopID(); in InvalidateIfNeeded()
43 invalidate = process_stop_id != GetStopID(); in InvalidateIfNeeded()
H A DQueueItem.cpp73 uint32_t QueueItem::GetStopID() { in GetStopID() function in QueueItem
H A DThreadList.cpp78 uint32_t ThreadList::GetStopID() const { return m_stop_id; }
332 if (thread_sp->GetProcess()->GetStopID() > 1) in ShouldStop()
526 run_me_only_list.SetStopID(m_process.GetStopID()); in WillResume()
79 uint32_t ThreadList::GetStopID() const { return m_stop_id; } GetStopID() function in ThreadList
H A DThread.cpp353 const uint32_t stop_id = process_sp ? process_sp->GetStopID() : UINT32_MAX; in GetStopInfo()
394 const uint32_t process_stop_id = process_sp->GetStopID(); in GetPrivateStopInfo()
451 return m_stop_info_stop_id == process_sp->GetStopID(); in ResetStopInfo()
475 m_stop_info_stop_id = process_sp->GetStopID(); in SetStopInfo()
524 saved_state.orig_stop_id = process_sp->GetStopID(); in CheckpointThreadState()
698 const uint32_t process_stop_id = GetProcess()->GetStopID(); in ShouldResume()
H A DTrace.cpp287 uint32_t new_stop_id = m_live_process->GetStopID(); in RefreshLiveProcessState()
369 uint32_t Trace::GetStopID() { in GetStopID() function in Trace
H A DStopInfo.cpp36 m_stop_id(thread.GetProcess()->GetStopID()), in StopInfo()
44 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid()
51 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid()
/llvm-project/lldb/bindings/interface/
H A DSBProcessDocstrings.i96 ) lldb::SBProcess::GetStopID;
/llvm-project/lldb/include/lldb/Target/
H A DQueueItem.h114 uint32_t GetStopID();
H A DThreadList.h133 uint32_t GetStopID() const;
H A DRegisterContext.h225 uint32_t GetStopID() const { return m_stop_id; } in GetStopID() function
H A DTrace.h258 uint32_t GetStopID();
H A DProcess.h251 uint32_t GetStopID() const { return m_stop_id; } in GetMemoryID()
1451 uint32_t GetStopID() const { return m_mod_id.GetStopID(); }
249 uint32_t GetStopID() const { return m_stop_id; } GetStopID() function
1476 uint32_t GetStopID() const { return m_mod_id.GetStopID(); } GetStopID() function
/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.cpp390 m_stop_id = process->GetStopID(); in LoadImageUsingMemoryModule()
459 m_stop_id = process->GetStopID(); in LoadImageUsingMemoryModule()
496 m_stop_id = process->GetStopID(); in LoadImageUsingFileAddress()
H A DDynamicLoaderFreeBSDKernel.h102 uint32_t GetStopID() { return m_stop_id; } in GetStopID() function
/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp33 const uint32_t stop_id = process_sp->GetModID().GetStopID(); in UpdateRegisterContext()
/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp571 m_load_process_stop_id = process->GetStopID(); in LoadImageAtFileAddress()
961 m_load_process_stop_id = process->GetStopID(); in LoadImageUsingMemoryModule()
1072 m_kernel.SetProcessStopId(m_process->GetStopID()); in LoadKernelModuleIfNeeded()
1384 m_process->GetStopID() == image_info.GetProcessStopId()) in ParseKextSummaries()
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp320 m_isa_to_descriptor_stop_id = process->GetStopID(); in UpdateISAToDescriptorMapIfNeeded()
/llvm-project/lldb/include/lldb/API/
H A DSBProcess.h177 uint32_t GetStopID(bool include_expression_stops = false);
/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h234 uint32_t GetStopID() const;
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h294 if (m_process && m_process->GetStopID() != m_isa_to_descriptor_stop_id) { in UpdateISAToDescriptorMap()

12