reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Target/Target.h
 1193   StopHookSP CreateStopHook();
 1211   StopHookSP GetStopHookByID(lldb::user_id_t uid);
 1219   StopHookSP GetStopHookAtIndex(size_t index) {
 1325   typedef std::map<lldb::user_id_t, StopHookSP> StopHookCollection;
tools/lldb/source/Commands/CommandObjectTarget.cpp
 4615     Target::StopHookSP new_hook_sp = target.CreateStopHook();
 4706   Target::StopHookSP m_stop_hook_sp;
 4831         Target::StopHookSP this_hook = target.GetStopHookAtIndex(i);
tools/lldb/source/Target/Target.cpp
 2502 Target::StopHookSP Target::CreateStopHook() {
 2504   Target::StopHookSP stop_hook_sp(new StopHook(shared_from_this(), new_uid));
 2516 Target::StopHookSP Target::GetStopHookByID(lldb::user_id_t user_id) {
 2517   StopHookSP found_hook;
 2613     StopHookSP cur_hook_sp = (*pos).second;