Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DWatchpointList.cpp67 return wp_sp; in FindByAddress()
82 return wp_sp; in FindBySpec()
116 wp_sp = *pos; in FindByID()
118 return wp_sp; in FindByID()
123 if (wp_sp) { in FindIDByAddress()
131 if (wp_sp) { in FindIDBySpec()
143 wp_sp = *pos; in GetByIndex()
145 return wp_sp; in GetByIndex()
154 wp_sp = *pos; in GetByIndex()
156 return wp_sp; in GetByIndex()
[all …]
H A DWatchpoint.cpp380 WatchpointSP wp_sp; in GetWatchpointFromEvent() local
384 wp_sp = data->m_new_watchpoint_sp; in GetWatchpointFromEvent()
386 return wp_sp; in GetWatchpointFromEvent()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp491 lldb::WatchpointSP wp_sp = in GetStopInfoForHardwareBP() local
493 if (wp_sp && wp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
497 wp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code); in GetStopInfoForHardwareBP()
603 lldb::WatchpointSP wp_sp; in CreateStopReasonWithMachException() local
605 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException()
607 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
612 wp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code); in CreateStopReasonWithMachException()
646 lldb::WatchpointSP wp_sp; in CreateStopReasonWithMachException() local
648 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException()
650 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
[all …]
/llvm-project-15.0.7/lldb/source/Target/
H A DStopInfo.cpp706 WatchpointSP wp_sp( in ShouldStopSynchronous() local
709 if (wp_sp) { in ShouldStopSynchronous()
713 m_should_stop = wp_sp->ShouldStop(&context); in ShouldStopSynchronous()
748 WatchpointSP wp_sp( in PerformAction() local
751 if (wp_sp) { in PerformAction()
769 Watchpoint *wp = wp_sp.get(); in PerformAction()
803 WatchpointSentry sentry(process_sp, wp_sp); in PerformAction()
824 wp_sp->IncrementFalseAlarmsAndReviseHitCount(); in PerformAction()
838 if (wp_sp->GetHitCount() <= wp_sp->GetIgnoreCount()) in PerformAction()
924 wp_sp->CaptureWatchedValue(exe_ctx); in PerformAction()
[all …]
H A DTarget.cpp867 if (!wp_sp) { in CreateWatchpoint()
890 return wp_sp; in CreateWatchpoint()
1179 if (!wp_sp) in RemoveAllWatchpoints()
1208 if (!wp_sp) in DisableAllWatchpoints()
1235 if (!wp_sp) in EnableAllWatchpoints()
1251 if (!wp_sp) in ClearAllWatchpointHitCounts()
1265 if (!wp_sp) in ClearAllWatchpointHistoricValues()
1283 if (!wp_sp) in IgnoreAllWatchpoints()
1300 if (wp_sp) { in DisableWatchpointByID()
1319 if (wp_sp) { in EnableWatchpointByID()
[all …]
/llvm-project-15.0.7/lldb/source/API/
H A DSBWatchpoint.cpp31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp) in SBWatchpoint() argument
32 : m_opaque_wp(wp_sp) { in SBWatchpoint()
33 LLDB_INSTRUMENT_VA(this, wp_sp); in SBWatchpoint()
/llvm-project-15.0.7/lldb/bindings/lua/
H A Dlua-wrapper.swig45 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) {
47 lldb::SBWatchpoint sb_wp(wp_sp);
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DSWIGLuaBridge.h24 lua_State *L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp);
H A DLua.cpp108 lldb::WatchpointSP wp_sp) { in CallWatchpointCallback() argument
113 wp_sp); in CallWatchpointCallback()
H A DLua.h43 lldb::WatchpointSP wp_sp);
H A DScriptInterpreterLua.cpp307 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction() local
315 lua.CallWatchpointCallback(baton, stop_frame_sp, wp_sp); in WatchpointCallbackFunction()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Lua/
H A DLuaTests.cpp25 lua_State *L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) { in LLDBSwigLuaWatchpointCallbackFunction() argument
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBWatchpoint.h22 SBWatchpoint(const lldb::WatchpointSP &wp_sp);
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp761 WatchpointSP wp_sp = target->GetLastCreatedWatchpoint(); in DoExecute() local
762 wp_sp->SetCondition(m_options.m_condition.c_str()); in DoExecute()
776 WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]); in DoExecute() local
777 if (wp_sp) { in DoExecute()
778 wp_sp->SetCondition(m_options.m_condition.c_str()); in DoExecute()
H A DCommandCompletions.cpp779 for (lldb::WatchpointSP wp_sp : wp_list.Watchpoints()) { in WatchPointIDs() local
781 wp_sp->Dump(&strm); in WatchPointIDs()
782 request.TryCompleteCurrentArg(std::to_string(wp_sp->GetID()), in WatchPointIDs()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DWatchpointList.h53 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.cpp408 if (lldb::WatchpointSP wp_sp = in RefreshStateAfterStop() local
410 wp_sp->SetHardwareIndex(slot_id); in RefreshStateAfterStop()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1796 WatchpointSP wp_sp; in SetThreadStopInfo() local
1802 wp_sp = GetTarget().GetWatchpointList().FindByAddress( in SetThreadStopInfo()
1804 if (!wp_sp) in SetThreadStopInfo()
1805 wp_sp = in SetThreadStopInfo()
1807 if (wp_sp) { in SetThreadStopInfo()
1808 wp_sp->SetHardwareIndex(wp_index); in SetThreadStopInfo()
1809 watch_id = wp_sp->GetID(); in SetThreadStopInfo()
2243 WatchpointSP wp_sp = in SetThreadStopInfo() local
2247 if (wp_sp) in SetThreadStopInfo()
2248 wp_index = wp_sp->GetHardwareIndex(); in SetThreadStopInfo()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2248 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction() local
2249 if (wp_sp) { in WatchpointCallbackFunction()
2250 if (stop_frame_sp && wp_sp) { in WatchpointCallbackFunction()
2259 wp_sp); in WatchpointCallbackFunction()
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-wrapper.swig70 const lldb::StackFrameSP &frame_sp, const lldb::WatchpointSP &wp_sp) {
85 pfunc(ToSWIGWrapper(frame_sp), ToSWIGWrapper(wp_sp), dict);