Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp) in SBWatchpoint()
54 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetID()
87 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetError()
109 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetWatchAddress()
124 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetWatchSize()
137 lldb::WatchpointSP watchpoint_sp(GetSP()); in SetEnabled()
157 lldb::WatchpointSP watchpoint_sp(GetSP()); in IsEnabled()
170 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetHitCount()
183 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetIgnoreCount()
195 lldb::WatchpointSP watchpoint_sp(GetSP()); in SetIgnoreCount()
[all …]
H A DSBTarget.cpp1284 lldb::WatchpointSP watchpoint_sp; in FindWatchpointByID()
1316 lldb::WatchpointSP watchpoint_sp; in WatchpointCreateByAddress()
H A DSBValue.cpp1494 WatchpointSP watchpoint_sp = in Watch()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointList.cpp20 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { in Add()
54 const WatchpointSP WatchpointList::FindByAddress(lldb::addr_t addr) const { in FindByAddress()
55 WatchpointSP wp_sp; in FindByAddress()
72 const WatchpointSP WatchpointList::FindBySpec(std::string spec) const { in FindBySpec()
73 WatchpointSP wp_sp; in FindBySpec()
91 bool operator()(const WatchpointSP &wp) const { in operator ()()
111 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const { in FindByID()
112 WatchpointSP wp_sp; in FindByID()
122 WatchpointSP wp_sp = FindByAddress(addr); in FindIDByAddress()
130 WatchpointSP wp_sp = FindBySpec(spec); in FindIDBySpec()
[all …]
H A DWatchpointResource.cpp52 void WatchpointResource::AddConstituent(const WatchpointSP &wp_sp) { in AddConstituent()
57 void WatchpointResource::RemoveConstituent(WatchpointSP &wp_sp) { in RemoveConstituent()
69 bool WatchpointResource::ConstituentsContains(const WatchpointSP &wp_sp) { in ConstituentsContains()
76 [&wp](const WatchpointSP &x) { return x.get() == wp; }); in ConstituentsContains()
79 WatchpointSP WatchpointResource::GetConstituentAtIndex(size_t idx) { in GetConstituentAtIndex()
H A DWatchpoint.cpp160 WatchpointSP watch_sp = in VariableWatchpointDisabler()
494 WatchpointEventType sub_type, const WatchpointSP &new_watchpoint_sp) in WatchpointEventData()
507 WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() { in GetWatchpoint()
539 WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent( in GetWatchpointFromEvent()
541 WatchpointSP wp_sp; in GetWatchpointFromEvent()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointList.h41 typedef std::list<lldb::WatchpointSP> wp_collection;
52 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
69 const lldb::WatchpointSP FindByAddress(lldb::addr_t addr) const;
80 const lldb::WatchpointSP FindBySpec(std::string spec) const;
91 lldb::WatchpointSP FindByID(lldb::watch_id_t watchID) const;
120 lldb::WatchpointSP GetByIndex(uint32_t i);
131 const lldb::WatchpointSP GetByIndex(uint32_t i) const;
H A DWatchpointResource.h41 typedef std::vector<lldb::WatchpointSP> WatchpointCollection;
72 void AddConstituent(const lldb::WatchpointSP &constituent);
76 void RemoveConstituent(lldb::WatchpointSP &constituent);
96 lldb::WatchpointSP GetConstituentAtIndex(size_t idx);
105 bool ConstituentsContains(const lldb::WatchpointSP &wp_sp);
H A DWatchpoint.h30 const lldb::WatchpointSP &new_watchpoint_sp);
40 lldb::WatchpointSP &GetWatchpoint();
47 static lldb::WatchpointSP
55 lldb::WatchpointSP m_new_watchpoint_sp;
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h94 SBWatchpoint(const lldb::WatchpointSP &wp_sp);
96 lldb::WatchpointSP GetSP() const;
98 void SetSP(const lldb::WatchpointSP &sp);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp73 WatchpointSP watch_sp = target.GetLastCreatedWatchpoint(); in VerifyWatchpointIDs()
237 WatchpointSP watch_sp = watchpoints.GetByIndex(i); in DoExecute()
252 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]); in DoExecute()
723 WatchpointSP watch_sp = target.GetLastCreatedWatchpoint(); in DoExecute()
738 WatchpointSP watch_sp = watchpoints.FindByID(wp_ids[i]); in DoExecute()
904 WatchpointSP watch_sp = in DoExecute()
1096 WatchpointSP watch_sp = in DoExecute()
H A DCommandCompletions.cpp817 for (lldb::WatchpointSP wp_sp : wp_list.Watchpoints()) { in WatchPointIDs()
/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.h43 lldb::WatchpointSP wp_sp);
H A DLua.cpp108 lldb::WatchpointSP wp_sp) { in CallWatchpointCallback()
H A DScriptInterpreterLua.cpp321 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp655 WatchpointSentry(ProcessSP p_sp, WatchpointSP w_sp) : process_sp(p_sp), in WatchpointSentry()
692 WatchpointSP watchpoint_sp;
723 WatchpointSP watch_sp) in ThreadPlanStepOverWatchpoint()
785 WatchpointSP m_watch_sp;
814 WatchpointSP wp_sp( in ShouldStopSynchronous()
906 WatchpointSP wp_sp( in PerformAction()
H A DTarget.cpp942 WatchpointSP Target::CreateWatchpoint(lldb::addr_t addr, size_t size, in CreateWatchpoint()
951 WatchpointSP wp_sp; in CreateWatchpoint()
1000 WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr); in CreateWatchpoint()
1328 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in RemoveAllWatchpoints()
1357 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in DisableAllWatchpoints()
1384 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in EnableAllWatchpoints()
1400 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in ClearAllWatchpointHitCounts()
1414 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in ClearAllWatchpointHistoricValues()
1432 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in IgnoreAllWatchpoints()
1449 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in DisableWatchpointByID()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h97 static PythonObject ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp);
132 const lldb::StackFrameSP &sb_frame, const lldb::WatchpointSP &sb_wp);
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-wrapper.swig47 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) {
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h160 Status EnableWatchpoint(lldb::WatchpointSP wp_sp,
163 Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig72 PythonObject SWIGBridge::ToSWIGWrapper(lldb::WatchpointSP watchpoint_sp) {
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h798 lldb::WatchpointSP CreateWatchpoint(lldb::addr_t addr, size_t size,
802 lldb::WatchpointSP GetLastCreatedWatchpoint() { in GetLastCreatedWatchpoint()
1620 lldb::WatchpointSP m_last_created_watchpoint;
H A DProcess.h2232 virtual Status EnableWatchpoint(lldb::WatchpointSP wp_sp, bool notify = true);
2234 virtual Status DisableWatchpoint(lldb::WatchpointSP wp_sp,
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h494 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP; typedef

12