Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/
DNativeProcessFreeBSD.cpp92 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Launch() local
96 status = process_up->SetupTrace(); in Launch()
100 for (const auto &thread : process_up->m_threads) in Launch()
102 process_up->SetState(StateType::eStateStopped, false); in Launch()
104 return std::move(process_up); in Launch()
121 std::unique_ptr<NativeProcessFreeBSD> process_up(new NativeProcessFreeBSD( in Attach() local
124 Status status = process_up->Attach(); in Attach()
128 return std::move(process_up); in Attach()
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeProcessNetBSD.cpp97 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Launch() local
101 status = process_up->SetupTrace(); in Launch()
105 for (const auto &thread : process_up->m_threads) in Launch()
107 process_up->SetState(StateType::eStateStopped, false); in Launch()
109 return std::move(process_up); in Launch()
126 std::unique_ptr<NativeProcessNetBSD> process_up(new NativeProcessNetBSD( in Attach() local
129 Status status = process_up->Attach(); in Attach()
133 return std::move(process_up); in Attach()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DNativeProcessWindows.cpp587 auto process_up = std::unique_ptr<NativeProcessWindows>( in Launch() local
591 return std::move(process_up); in Launch()
600 auto process_up = std::unique_ptr<NativeProcessWindows>( in Attach() local
604 return std::move(process_up); in Attach()