Home
last modified time | relevance | path

Searched refs:new_hook_sp (Results 1 – 2 of 2) sorted by relevance

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