Home
last modified time | relevance | path

Searched refs:child_process (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp1066 std::unique_ptr<NativeProcessNetBSD> child_process{ in MonitorClone()
1070 child_process->m_software_breakpoints = m_software_breakpoints; in MonitorClone()
1074 child_process->SetupTrace(); in MonitorClone()
1075 for (const auto &thread : child_process->m_threads)
1077 child_process->SetState(StateType::eStateStopped, false); in SaveCore()
1079 m_delegate.NewSubprocess(this, std::move(child_process)); in SaveCore()
1086 child_process->Detach(); in SaveCore()
1045 std::unique_ptr<NativeProcessNetBSD> child_process{ MonitorClone() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp1026 std::unique_ptr<NativeProcessFreeBSD> child_process{ in MonitorClone() local
1030 child_process->m_software_breakpoints = m_software_breakpoints; in MonitorClone()
1034 child_process->SetupTrace(); in MonitorClone()
1035 for (const auto &thread : child_process->m_threads) in MonitorClone()
1037 child_process->SetState(StateType::eStateStopped, false); in MonitorClone()
1039 m_delegate.NewSubprocess(this, std::move(child_process)); in MonitorClone()
1046 child_process->Detach(); in MonitorClone()
/freebsd/usr.sbin/cron/cron/
H A Ddo_command.c36 static void child_process(entry *, user *);
62 child_process(e, u); in do_command()
116 child_process(entry *e, user *u) in child_process() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h85 std::unique_ptr<NativeProcessProtocol> child_process) override;
H A DGDBRemoteCommunicationServerLLGS.cpp1144 std::unique_ptr<NativeProcessProtocol> child_process) { in NewSubprocess() argument
1145 lldb::pid_t child_pid = child_process->GetID(); in NewSubprocess()
1150 DebuggedProcess{std::move(child_process), DebuggedProcess::Flag{}}); in NewSubprocess()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h250 std::unique_ptr<NativeProcessProtocol> child_process) = 0;