| /external/linux-tools-perf/ |
| builtin-report.c | 193 .fork = perf_event__process_task,
|
| builtin-script.c | 379 .fork = perf_event__process_task, 1076 pid = fork(); 1078 perror("failed to fork");
|
| /external/oprofile/daemon/ |
| opd_perfmon.c | 444 ret = fork(); 446 perror("Couldn't fork perfmon child");
|
| /external/qemu/target-mips/ |
| helper.h | 163 DEF_HELPER_2(fork, void, tl, tl)
|
| /hardware/broadcom/wlan/bcmdhd/dhdutil/ |
| dhdu_linux.c | 648 return fork();
|
| /system/core/logwrapper/ |
| logwrap.c | 498 pid = fork(); 501 ERROR("Failed to fork\n");
|
| /external/chromium/base/ |
| process_util_posix.cc | 516 pid = fork(); 518 PLOG(ERROR) << "fork"; 524 // DANGER: fork() rule: in the child, if you don't end up doing exec*(), 898 switch (pid = fork()) { 911 // Obscure fork() rule: in the child, if you don't end up doing exec*(), [all...] |
| /external/chromium/testing/gtest/src/ |
| gtest-death-test.cc | 88 "Instructs to use fork()/_exit() instead of clone() in death tests. " 89 "Ignored and always uses fork() on POSIX systems where clone() is not " 181 msg << "Death tests use fork(), which is unsafe particularly" 784 // The AssumeRole process for a fork-and-run death test. It implements a 785 // straightforward fork, with a simple pipe to transmit the status byte. 797 // When we fork the process below, the log file buffers are copied, but the 801 // This is as close to the fork as possible to avoid a race condition in case 806 const pid_t child_pid = fork(); [all...] |
| /external/chromium/testing/gtest/test/ |
| gtest-death-test_test.cc | 227 pid_t child_pid = fork(); 242 pid_t child_pid = fork(); [all...] |
| /external/dropbear/ |
| scp.c | 136 if ((pid = fork()) == -1) 137 fatal("do_local_cmd: fork: %s", strerror(errno)); 205 /* Fork a child to execute the command on the remote host using ssh. */ 209 do_cmd_pid = fork(); 233 fatal("fork: %s", strerror(errno));
|
| svr-chansession.c | 652 pid = fork(); 756 pid = fork();
|
| /external/e2fsprogs/misc/ |
| fsck.c | 490 /* Fork and execute the correct program. */ 493 else if ((pid = fork()) < 0) { 494 perror("fork"); 643 if (fork() == 0) {
|
| /external/gtest/src/ |
| gtest-death-test.cc | 88 "Instructs to use fork()/_exit() instead of clone() in death tests. " 89 "Ignored and always uses fork() on POSIX systems where clone() is not " 181 msg << "Death tests use fork(), which is unsafe particularly" 784 // The AssumeRole process for a fork-and-run death test. It implements a 785 // straightforward fork, with a simple pipe to transmit the status byte. 797 // When we fork the process below, the log file buffers are copied, but the 801 // This is as close to the fork as possible to avoid a race condition in case 806 const pid_t child_pid = fork(); [all...] |
| /external/gtest/test/ |
| gtest-death-test_test.cc | 227 pid_t child_pid = fork(); 242 pid_t child_pid = fork(); [all...] |
| /external/libsepol/tests/policies/test-expander/ |
| small-base.conf | 266 fork
|
| /external/libvpx/libvpx/third_party/googletest/src/src/ |
| gtest-death-test.cc | 88 "Instructs to use fork()/_exit() instead of clone() in death tests. " 89 "Ignored and always uses fork() on POSIX systems where clone() is not " 181 msg << "Death tests use fork(), which is unsafe particularly" 784 // The AssumeRole process for a fork-and-run death test. It implements a 785 // straightforward fork, with a simple pipe to transmit the status byte. 797 // When we fork the process below, the log file buffers are copied, but the 801 // This is as close to the fork as possible to avoid a race condition in case 806 const pid_t child_pid = fork(); [all...] |
| /external/libvpx/libvpx/third_party/googletest/src/test/ |
| gtest-death-test_test.cc | 227 pid_t child_pid = fork(); 242 pid_t child_pid = fork(); [all...] |
| /external/llvm/utils/unittest/googletest/ |
| gtest-death-test.cc | 88 "Instructs to use fork()/_exit() instead of clone() in death tests. " 89 "Ignored and always uses fork() on POSIX systems where clone() is not " 181 msg << "Death tests use fork(), which is unsafe particularly" 783 // The AssumeRole process for a fork-and-run death test. It implements a 784 // straightforward fork, with a simple pipe to transmit the status byte. 796 // When we fork the process below, the log file buffers are copied, but the 800 // This is as close to the fork as possible to avoid a race condition in case 805 const pid_t child_pid = fork(); [all...] |
| /external/open-vcdiff/gtest/src/ |
| gtest-death-test.cc | 88 "Instructs to use fork()/_exit() instead of clone() in death tests. " 89 "Ignored and always uses fork() on POSIX systems where clone() is not " 172 msg << "Death tests use fork(), which is unsafe particularly" 736 // The AssumeRole process for a fork-and-run death test. It implements a 737 // straightforward fork, with a simple pipe to transmit the status byte. 749 // When we fork the process below, the log file buffers are copied, but the 753 // This is as close to the fork as possible to avoid a race condition in case 758 const pid_t child_pid = fork(); [all...] |
| /external/openssh/ |
| sshconnect.c | 117 /* Fork and execute the proxy command. */ 118 if ((pid = fork()) == 0) { 153 fatal("fork failed: %.100s", strerror(errno)); [all...] |
| sshd.c | 637 pid = fork(); 639 fatal("fork of unprivileged child failed"); 704 pmonitor->m_pid = fork(); 706 fatal("fork of unprivileged child failed"); 1210 * Got connection. Fork a child to handle it, unless 1219 debug("Server will not fork when running in debugging mode."); 1236 * Normal production daemon. Fork, and have 1241 if ((pid = fork()) == 0) { 1268 error("fork: %.100s", strerror(errno)); [all...] |
| /external/protobuf/gtest/src/ |
| gtest-death-test.cc | 88 "Instructs to use fork()/_exit() instead of clone() in death tests. " 89 "Ignored and always uses fork() on POSIX systems where clone() is not " 172 msg << "Death tests use fork(), which is unsafe particularly" 736 // The AssumeRole process for a fork-and-run death test. It implements a 737 // straightforward fork, with a simple pipe to transmit the status byte. 749 // When we fork the process below, the log file buffers are copied, but the 753 // This is as close to the fork as possible to avoid a race condition in case 758 const pid_t child_pid = fork(); [all...] |
| /external/protobuf/gtest/test/ |
| gtest-death-test_test.cc | 218 pid_t child_pid = fork(); 233 pid_t child_pid = fork(); [all...] |
| /external/sepolicy/ |
| access_vectors | 302 fork
|
| /external/valgrind/main/none/tests/ |
| cmdline1.stdout.exp | 18 --child-silent-after-fork=no|yes omit child output between fork & exec? [no]
|