Home
last modified time | relevance | path

Searched refs:watchpoint_sp (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/API/
DSBWatchpoint.cpp73 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetID() local
74 if (watchpoint_sp) in GetID()
75 watch_id = watchpoint_sp->GetID(); in GetID()
80 … log->Printf ("SBWatchpoint(%p)::GetID () => LLDB_INVALID_WATCH_ID", watchpoint_sp.get()); in GetID()
82 log->Printf ("SBWatchpoint(%p)::GetID () => %u", watchpoint_sp.get(), watch_id); in GetID()
98 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetError() local
99 if (watchpoint_sp) in GetError()
101 sb_error.SetError(watchpoint_sp->GetError()); in GetError()
111 lldb::WatchpointSP watchpoint_sp(GetSP()); in GetHardwareIndex() local
112 if (watchpoint_sp) in GetHardwareIndex()
[all …]
DSBTarget.cpp1775 lldb::WatchpointSP watchpoint_sp; in FindWatchpointByID() local
1782 watchpoint_sp = target_sp->GetWatchpointList().FindByID(wp_id); in FindWatchpointByID()
1783 sb_watchpoint.SetSP (watchpoint_sp); in FindWatchpointByID()
1789 target_sp.get(), (uint32_t) wp_id, watchpoint_sp.get()); in FindWatchpointByID()
1801 lldb::WatchpointSP watchpoint_sp; in WatchAddress() local
1821 watchpoint_sp = target_sp->CreateWatchpoint(addr, size, type, watch_type, cw_error); in WatchAddress()
1823 sb_watchpoint.SetSP (watchpoint_sp); in WatchAddress()
1829 target_sp.get(), addr, (uint32_t) size, watchpoint_sp.get()); in WatchAddress()
DSBValue.cpp1665 … WatchpointSP watchpoint_sp = target_sp->CreateWatchpoint(addr, byte_size, &type, watch_type, rc); in Watch() local
1668 if (watchpoint_sp) in Watch()
1670 sb_watchpoint.SetSP (watchpoint_sp); in Watch()
1679 watchpoint_sp->SetDeclInfo(ss.GetString()); in Watch()