Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointList.cpp69 return wp_sp; in FindByAddress()
84 return wp_sp; in FindBySpec()
118 wp_sp = *pos; in FindByID()
120 return wp_sp; in FindByID()
125 if (wp_sp) { in FindIDByAddress()
133 if (wp_sp) { in FindIDBySpec()
145 wp_sp = *pos; in GetByIndex()
147 return wp_sp; in GetByIndex()
156 wp_sp = *pos; in GetByIndex()
158 return wp_sp; in GetByIndex()
[all …]
H A DWatchpointResource.cpp53 void WatchpointResource::AddConstituent(const WatchpointSP &wp_sp) { in AddConstituent() argument
55 m_constituents.push_back(wp_sp); in AddConstituent()
58 void WatchpointResource::RemoveConstituent(WatchpointSP &wp_sp) { in RemoveConstituent() argument
61 std::find(m_constituents.begin(), m_constituents.end(), wp_sp); in RemoveConstituent()
71 bool WatchpointResource::ConstituentsContains(const WatchpointSP &wp_sp) { in ConstituentsContains() argument
72 return ConstituentsContains(wp_sp.get()); in ConstituentsContains()
H A DWatchpointResourceList.cpp74 WatchpointResourceList::FindByWatchpointSP(WatchpointSP &wp_sp) { in FindByWatchpointSP() argument
75 return FindByWatchpoint(wp_sp.get()); in FindByWatchpointSP()
H A DWatchpoint.cpp522 WatchpointSP wp_sp; in GetWatchpointFromEvent() local
526 wp_sp = data->m_new_watchpoint_sp; in GetWatchpointFromEvent()
528 return wp_sp; in GetWatchpointFromEvent()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp498 lldb::WatchpointSP wp_sp = in GetStopInfoForHardwareBP() local
500 if (wp_sp && wp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
501 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in GetStopInfoForHardwareBP()
677 lldb::WatchpointSP wp_sp; in CreateStopReasonWithMachException() local
679 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException()
681 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
683 wp_sp->GetID()); in CreateStopReasonWithMachException()
756 lldb::WatchpointSP wp_sp; in CreateStopReasonWithMachException() local
758 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException()
760 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp793 WatchpointSP wp_sp( in ShouldStopSynchronous() local
796 if (!wp_sp) { in ShouldStopSynchronous()
810 m_should_stop = wp_sp->ShouldStop(&context); in ShouldStopSynchronous()
834 *(thread_sp.get()), me_as_siwp_sp, wp_sp)); in ShouldStopSynchronous()
885 WatchpointSP wp_sp( in PerformAction() local
888 if (wp_sp) { in PerformAction()
895 WatchpointSentry sentry(process_sp, wp_sp); in PerformAction()
899 wp_sp->UndoHitCount(); in PerformAction()
902 if (wp_sp->GetHitCount() <= wp_sp->GetIgnoreCount()) { in PerformAction()
930 wp_sp->UndoHitCount(); in PerformAction()
[all …]
H A DTarget.cpp927 if (!wp_sp) { in CreateWatchpoint()
945 return wp_sp; in CreateWatchpoint()
1238 if (!wp_sp) in RemoveAllWatchpoints()
1267 if (!wp_sp) in DisableAllWatchpoints()
1294 if (!wp_sp) in EnableAllWatchpoints()
1310 if (!wp_sp) in ClearAllWatchpointHitCounts()
1324 if (!wp_sp) in ClearAllWatchpointHistoricValues()
1342 if (!wp_sp) in IgnoreAllWatchpoints()
1359 if (wp_sp) { in DisableWatchpointByID()
1378 if (wp_sp) { in EnableWatchpointByID()
[all …]
H A DProcess.cpp2423 Status Process::EnableWatchpoint(WatchpointSP wp_sp, bool notify) { in EnableWatchpoint() argument
2429 Status Process::DisableWatchpoint(WatchpointSP wp_sp, bool notify) { in DisableWatchpoint() argument
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-wrapper.swig47 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) {
49 lldb::SBWatchpoint sb_wp(wp_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DSWIGLuaBridge.h28 lua_State *L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp);
H A DLua.cpp108 lldb::WatchpointSP wp_sp) { in CallWatchpointCallback() argument
113 m_lua_state, stop_frame_sp, wp_sp); in CallWatchpointCallback()
H A DLua.h43 lldb::WatchpointSP wp_sp);
H A DScriptInterpreterLua.cpp308 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction() local
316 lua.CallWatchpointCallback(baton, stop_frame_sp, wp_sp); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointResourceList.h75 lldb::WatchpointResourceSP FindByWatchpointSP(lldb::WatchpointSP &wp_sp);
H A DWatchpointResource.h106 bool ConstituentsContains(const lldb::WatchpointSP &wp_sp);
H A DWatchpointList.h53 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h94 SBWatchpoint(const lldb::WatchpointSP &wp_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3135 if (!wp_sp) { in EnableWatchpoint()
3139 user_id_t watchID = wp_sp->GetID(); in EnableWatchpoint()
3144 if (wp_sp->IsEnabled()) { in EnableWatchpoint()
3153 bool write = wp_sp->WatchpointWrite() || wp_sp->WatchpointModify(); in EnableWatchpoint()
3154 size_t size = wp_sp->GetByteSize(); in EnableWatchpoint()
3213 wp_sp->SetEnabled(true, notify); in EnableWatchpoint()
3239 if (!wp_sp) { in DisableWatchpoint()
3244 user_id_t watchID = wp_sp->GetID(); in DisableWatchpoint()
3255 if (!wp_sp->IsEnabled()) { in DisableWatchpoint()
3263 wp_sp->SetEnabled(false, notify); in DisableWatchpoint()
[all …]
H A DProcessGDBRemote.h161 Status EnableWatchpoint(lldb::WatchpointSP wp_sp,
164 Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp793 for (lldb::WatchpointSP wp_sp : wp_list.Watchpoints()) { in WatchPointIDs() local
795 wp_sp->Dump(&strm); in WatchPointIDs()
796 request.TryCompleteCurrentArg(std::to_string(wp_sp->GetID()), in WatchPointIDs()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2101 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction() local
2102 if (wp_sp) { in WatchpointCallbackFunction()
2103 if (stop_frame_sp && wp_sp) { in WatchpointCallbackFunction()
2112 wp_sp); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2170 virtual Status EnableWatchpoint(lldb::WatchpointSP wp_sp, bool notify = true);
2172 virtual Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig70 const lldb::StackFrameSP &frame_sp, const lldb::WatchpointSP &wp_sp) {
85 pfunc(SWIGBridge::ToSWIGWrapper(frame_sp), SWIGBridge::ToSWIGWrapper(wp_sp), dict);
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3781 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) { in LLDBSwigLuaWatchpointCallbackFunction() argument
3783 lldb::SBWatchpoint sb_wp(wp_sp); in LLDBSwigLuaWatchpointCallbackFunction()