HomeSort by relevance Sort by last modified time
    Searched refs:Fork (Results 1 - 8 of 8) sorted by null

  /external/lldb/include/lldb/Utility/
PseudoTerminal.h 69 /// Fork a child process that uses pseudo terminals for its stdio.
92 /// than zero, or -1 if the fork fails.
96 Fork (char *error_str, size_t error_len);
  /external/lldb/tools/debugserver/source/
PseudoTerminal.h 77 pid_t Fork(Error& error);
PseudoTerminal.cpp 157 // Fork a child process that and have its stdio routed to a pseudo
174 // in the parent process: the pid of the child, or -1 if fork fails
179 PseudoTerminal::Fork(PseudoTerminal::Error& error)
188 pid = ::fork ();
191 // Fork failed
  /external/lldb/source/Utility/
PseudoTerminal.cpp 193 // Fork a child process and have its stdio routed to a pseudo terminal.
210 // in the parent process: the pid of the child, or -1 if fork fails
214 PseudoTerminal::Fork (char *error_str, size_t error_len)
224 pid = ::fork ();
227 // Fork failed
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 28 import org.openjdk.jmh.annotations.Fork;
51 @Fork(1)
  /external/lldb/source/Plugins/Process/FreeBSD/
ProcessMonitor.cpp 886 if ((pid = terminal.Fork(err_str, err_len)) == -1)
889 args->m_error.SetErrorString("Process fork failed.");
    [all...]
  /external/lldb/source/Plugins/Process/Linux/
ProcessMonitor.cpp     [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.cpp     [all...]

Completed in 292 milliseconds