Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp1046 std::unique_ptr<NativeProcessNetBSD> child_process{ in MonitorClone() local
1050 child_process->m_software_breakpoints = m_software_breakpoints; in MonitorClone()
1054 child_process->SetupTrace(); in MonitorClone()
1055 for (const auto &thread : child_process->m_threads) in MonitorClone()
1057 child_process->SetState(StateType::eStateStopped, false); in MonitorClone()
1059 m_delegate.NewSubprocess(this, std::move(child_process)); in MonitorClone()
1066 child_process->Detach(); in MonitorClone()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp982 std::unique_ptr<NativeProcessFreeBSD> child_process{ in MonitorClone() local
986 child_process->m_software_breakpoints = m_software_breakpoints; in MonitorClone()
990 child_process->SetupTrace(); in MonitorClone()
991 for (const auto &thread : child_process->m_threads) in MonitorClone()
993 child_process->SetState(StateType::eStateStopped, false); in MonitorClone()
995 m_delegate.NewSubprocess(this, std::move(child_process)); in MonitorClone()
1002 child_process->Detach(); in MonitorClone()
/freebsd-13.1/usr.sbin/cron/cron/
H A Ddo_command.c41 static void child_process(entry *, user *);
70 child_process(e, u);
89 child_process(e, u) in child_process() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h83 std::unique_ptr<NativeProcessProtocol> child_process) override;
H A DGDBRemoteCommunicationServerLLGS.cpp1073 std::unique_ptr<NativeProcessProtocol> child_process) { in NewSubprocess() argument
1074 lldb::pid_t child_pid = child_process->GetID(); in NewSubprocess()
1077 m_debugged_processes[child_pid] = std::move(child_process); in NewSubprocess()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h234 std::unique_ptr<NativeProcessProtocol> child_process) = 0;