Searched defs:new_hook_sp (Results 1 - 2 of 2) sorted by path

/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp4948 Target::StopHookSP new_hook_sp; local
4949 target->AddStopHook (new_hook_sp);
4989 new_hook_sp->SetSpecifier (specifier_ap.release());
5011 new_hook_sp->SetThreadSpecifier (thread_spec);
5017 new_hook_sp->GetCommandPointer()->AppendString (m_options.m_one_liner.c_str());
5018 result.AppendMessageWithFormat("Stop hook #%" PRIu64 " added.\n", new_hook_sp->GetID());
5029 target->RemoveStopHookByID (new_hook_sp->GetID());
5034 new_hook_sp.get(), // baton
5043 target->RemoveStopHookByID (new_hook_sp->GetID());
/external/lldb/source/Target/
H A DTarget.cpp1982 Target::AddStopHook (Target::StopHookSP &new_hook_sp) argument
1985 new_hook_sp.reset (new StopHook(shared_from_this(), new_uid));
1986 m_stop_hooks[new_uid] = new_hook_sp;

Completed in 382 milliseconds