HomeSort by relevance Sort by last modified time
    Searched refs:fork (Results 151 - 175 of 289) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 191 // Fork client, use this process as server
193 switch (pid_t pid = fork()) {
  /system/netd/
TetherController.cpp 120 if ((pid = fork()) < 0) {
121 ALOGE("fork failed (%s)", strerror(errno));
  /external/strace/
strace.c 215 /* Glue for systems without a MMU that cannot provide fork() */
220 # define fork() vfork() macro
325 if ((popen_pid = fork()) == -1)
327 fprintf(stderr, "%s: fork: %s\n",
389 pid_t pid = fork();
573 strace_child = pid = fork();
575 perror("strace: fork");
693 * First fork a new child, call ptrace with PTRACE_SETOPTIONS on it,
704 if ((pid = fork()) < 0)
710 _exit(fork() < 0)
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 78 /** fork */
79 private boolean fork; field in class:ANTLR3
311 // we are forced to fork ANTLR since there is a call
319 this.fork = s;
  /external/libsepol/tests/policies/test-deps/
base-metreq.conf 266 fork
small-base.conf 266 fork
  /external/libsepol/tests/policies/test-linker/
small-base.conf 266 fork
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 683 switch (fork())
685 case -1: return (-1); // Fork failed
694 switch (fork()) // Fork again, primarily for reasons of Unix trivia
696 case -1: return (-1); // Fork failed
  /external/qemu/slirp/
misc.c 238 * We create and bind a socket, then fork off to another
243 * do_pty = 0 Fork/exec inetd style
244 * do_pty = 1 Fork/exec using slirp.telnetd
245 * do_ptr = 2 Fork/exec using pty
293 switch(fork()) {
295 lprint("Error: fork failed: %s\n", strerror(errno));
858 switch(fork()) {
860 lprint("Error: fork failed: %s\n", strerror(errno));
  /external/qemu/slirp-android/
misc.c 218 * We create and bind a socket, then fork off to another
223 * do_pty = 0 Fork/exec inetd style
224 * do_pty = 1 Fork/exec using slirp.telnetd
225 * do_ptr = 2 Fork/exec using pty
262 switch(fork()) {
264 lprint("Error: fork failed: %s\n", strerror(errno));
824 switch(fork()) {
826 lprint("Error: fork failed: %s\n", strerror(errno));
  /external/valgrind/main/coregrind/
m_libcproc.c 350 pid = VG_(fork)();
579 Fork
582 Int VG_(fork) ( void ) function
  /frameworks/native/cmds/dumpstate/
utils.c 255 pid_t pid = fork();
259 printf("*** fork: %s\n", strerror(errno));
404 gzip_pid = fork();
406 fprintf(stderr, "fork: %s\n", strerror(errno));
  /external/mtpd/
mtpd.c 312 pppd_pid = fork();
314 log_print(FATAL, "Fork() %s", strerror(errno));
  /external/netperf/
netcpu_looper.c 353 /* we should have a valid base pointer. lets fork */
356 switch (lib_idle_pids[i] = fork()) {
358 perror("netperf: fork");
  /external/oprofile/daemon/
oprofiled.c 122 * opd_fork - fork and return as child
124 * fork() and exit the parent with _exit().
129 switch (fork()) {
131 perror("oprofiled: fork() failed: ");
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 300 child_pid_ = fork();
302 GOOGLE_LOG(FATAL) << "fork: " << strerror(errno);
  /external/qemu/android/
qemu-setup.c 548 /* disable SIGALRM for the fork(), the periodic signal seems to
549 * interefere badly with the fork() implementation on Linux running
553 pid = fork();
  /system/extras/tests/sdcard/
sysutil.cpp 352 pid_t childpid = fork();
356 fprintf(stderr, "Fork failed: %d %s", errno, strerror(errno));
  /external/dnsmasq/src/
dnsmasq.c 304 if ((pid = fork()) == -1)
315 /* check for errors after the fork */
328 if ((pid = fork()) == -1)
366 /* if we are to run scripts, we need to fork a helper before dropping root. */
778 die(_("cannot fork into background: %s"), NULL, EC_MISC);
1168 else if (!(daemon->options & OPT_DEBUG) && (p = fork()) != 0)
    [all...]
  /external/openssh/
scp.c 196 if ((pid = fork()) == -1)
197 fatal("do_local_cmd: fork: %s", strerror(errno));
260 /* Fork a child to execute the command on the remote host using ssh. */
261 do_cmd_pid = fork();
284 fatal("fork: %s", strerror(errno));
314 /* Fork a child to execute the command on the remote host using ssh. */
315 pid = fork();
333 fatal("fork: %s", strerror(errno));
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 133 msg << "Death tests use fork(), which is unsafe particularly"
450 // The AssumeRole process for a fork-and-run death test. It implements a
451 // straightforward fork, with a simple pipe to transmit the status byte.
463 // When we fork the process below, the log file buffers are copied, but the
467 // This is as close to the fork as possible to avoid a race condition in case
472 const pid_t child_pid = fork();
570 // A threadsafe implementation of fork(2) for threadsafe-style death tests
589 // The AssumeRole process for a fork-and-exec death test. It re-executes the
  /external/e2fsprogs/misc/
uuidd.c 66 pid = fork();
68 perror("fork");
  /external/iproute2/misc/
rtacct.c 396 } else if ((pid = fork()) != 0) {
  /external/libppp/src/
exec.c 284 } else switch ((pid = fork())) {
286 log_Printf(LogPHASE, "Unable to fork for line exec: %s\n",
main.c 443 bgpid = fork();
445 log_Printf(LogERROR, "fork: %s\n", strerror(errno));

Completed in 1243 milliseconds

1 2 3 4 5 67 8 91011>>