HomeSort by relevance Sort by last modified time
    Searched refs:fork (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
fork.c 35 int fork(void) function
39 /* Posix mandates that the timers of a fork child process be
52 // Fix the tid in the pthread_internal_t struct after a fork.
daemon.c 56 pid = fork();
  /external/linux-tools-perf/util/
build-id.c 49 struct thread *thread = perf_session__findnew(session, event->fork.tid);
51 dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid,
52 event->fork.ppid, event->fork.ptid);
66 .fork = perf_event__process_task,
  /system/extras/tests/cpueater/
cpueater.c 34 switch(fork()) {
44 /* fork again to fully detach from controlling terminal. */
45 switch(pid = fork()) {
daemonize.c 84 switch(pid = fork()) {
104 switch(pid = fork()) {
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
fork.cc 16 pid_t pid = fork();
fork_threaded.cc 30 pid_t pid = fork();
  /external/valgrind/main/none/tests/
fork.c 11 pid = fork ();
  /ndk/tests/device/test-wait/jni/
test_wait.c 46 cpid = fork(); /* Creates fork */
73 cpid = fork(); /* Creates fork */
75 printf("Fork has failed, returned = %d\n", EXIT_FAILURE);
99 cpid = fork(); /* Creates fork */
126 cpid = fork(); /* Creates fork */
  /external/openssh/openbsd-compat/
daemon.c 56 switch (fork()) {
  /external/valgrind/main/gdbserver_tests/
fork_chain.c 12 pid = fork();
14 perror("fork");
clean_after_fork.c 9 pid = fork();
12 perror("fork");
mcclean_after_fork.stdoutB.exp 6 9 pid = fork();
  /external/valgrind/main/memcheck/tests/
noisy_child.c 29 child = fork();
30 assert(child != -1); /* assert fork did not fail */
  /external/chromium_org/tools/android/adb_reboot/
adb_reboot.c 13 int i = fork();
18 printf("fork error");
  /external/chromium_org/third_party/libjingle/source/talk/base/
posix.cc 63 // Fork intermediate child to daemonize.
64 pid_t pid = fork();
66 LOG_ERR(LS_ERROR) << "fork()";
87 // Fork again to become a daemon.
88 pid = fork();
94 _exit(exit_code); // if second fork failed
  /external/chromium_org/base/test/
multiprocess_test_android.cc 24 pid_t pid = fork();
27 PLOG(ERROR) << "fork";
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
SkiaSharedBufferStream.h 61 virtual SkiaSharedBufferStream* fork() const OVERRIDE;
  /external/chromium_org/tools/android/common/
daemon.cc 57 if (fork()) {
  /external/compiler-rt/lib/msan/lit_tests/
ptrace.cc 13 pid = fork();
  /external/valgrind/main/drd/tests/
threaded-fork.c 0 /* fork a process that has created a detached thread. */
28 childpid = fork();
36 perror("FAILED: fork failed\n");
  /external/valgrind/main/none/tests/amd64/
allexec.c 13 pid_t child = fork(); \
15 else if (child == -1) perror ("cannot fork\n"); \
  /external/valgrind/main/none/tests/arm/
allexec.c 13 pid_t child = fork(); \
15 else if (child == -1) perror ("cannot fork\n"); \
  /external/valgrind/main/none/tests/mips32/
allexec.c 13 pid_t child = fork(); \
15 else if (child == -1) perror ("cannot fork\n"); \
  /external/valgrind/main/none/tests/ppc32/
allexec.c 13 pid_t child = fork(); \
15 else if (child == -1) perror ("cannot fork\n"); \

Completed in 2140 milliseconds

1 2 3 4 5 6 7 8 91011>>