HomeSort by relevance Sort by last modified time
    Searched refs:Fork (Results 1 - 14 of 14) 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/chromium_org/content/public/common/
zygote_fork_delegate_linux.h 20 // fork operations to another class that knows how to do some
21 // specialized version of fork.
25 // initialization, and provides "fork()" functionality as an
38 // piggy-backed onto fork responses that don't otherwise contain UMA reports,
44 // Returns 'true' if the delegate would like to handle a given fork
50 // Indexes of FDs in the vector passed to Fork().
59 kNumPassedFDs // Number of FDs in the vector passed to Fork().
63 // suid sandbox, Fork() returns the Linux process ID.
65 // return a raw pid just like fork() would.
68 virtual pid_t Fork(const std::string& process_type
    [all...]
  /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/chromium_org/components/nacl/zygote/
nacl_fork_delegate_linux.h 30 // initialization, and provides "fork()" functionality with
45 virtual pid_t Fork(const std::string& process_type,
nacl_fork_delegate_linux.cc 335 pid_t NaClForkDelegate::Fork(const std::string& process_type,
338 VLOG(1) << "NaClForkDelegate::Fork";
347 // First, send a remote fork request.
361 LOG(ERROR) << "Could not perform remote fork.";
365 // Now see if the other end managed to fork.
370 LOG(ERROR) << "NaClForkDelegate::Fork: pickle 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/chromium_org/sandbox/linux/services/
unix_domain_socket_unittest.cc 108 // Check that receiving PIDs works across a fork().
109 SANDBOX_TEST(UnixDomainSocketTest, Fork) {
117 const pid_t pid = fork();
136 // Similar to Fork above, but forking the child into a new pid namespace.
170 // Again similar to Fork, but now with nested PID namespaces.
  /external/chromium_org/content/zygote/
zygote_linux.cc 129 // This function call can return multiple times, once per fork().
189 // This function call can return multiple times, once per fork().
242 // spawns a separate thread which may live until the call to fork() in the
370 pid = helper->Fork(process_type, fds, channel_id);
376 pid = fork();
432 // Fork failed.
545 LOG(ERROR) << "Zygote could not fork: process_type " << process_type
562 // If there's no UMA report for this particular fork, then check if any
  /external/oprofile/events/mips/34K/
events 53 event:0x22 counters:0 um:zero minimum:500 name:FORK_INSNS : 34-0 Fork instructions completed
  /external/oprofile/events/mips/1004K/
events 53 event:0x22 counters:0 um:zero minimum:500 name:FORK_INSNS : 34-0 Fork instructions completed
  /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 343 milliseconds