| /system/extras/tests/bionic/libc/common/ |
| test_executable_destructor.c | 77 /* Fork the current process, then wait for the child to exit 80 pid = fork(); 82 fprintf(stderr, "Could not fork process: %s\n", strerror(errno));
|
| /bootable/recovery/ |
| adb_install.cpp | 83 if ((child = fork()) == 0) {
|
| /external/e2fsprogs/lib/ |
| fpopen.c | 95 /* Fork and execute the correct program. */ 96 if ((pid = fork()) < 0) { 97 perror("fork");
|
| /external/ppp/pppd/plugins/ |
| passprompt.c | 45 if ((kid = fork()) == (pid_t) -1) { 46 warn("Can't fork to run %s", promptprog);
|
| /external/valgrind/main/include/ |
| pub_tool_libcproc.h | 57 extern Int VG_(fork) ( void);
|
| /external/valgrind/main/none/tests/ |
| exec-sigmask.c | 15 pid = fork(); 17 perror("fork");
|
| mmap_fcntl_bug.c | 53 switch (fork()) { 60 err(1, "Fork failed");
|
| pth_atfork1.c | 1 /* Tests for fork in multi-threaded environment. 101 pid = fork (); 108 error (EXIT_FAILURE, errno, "cannot fork");
|
| fdleak_ipv4.c | 78 if ((pid = fork()) == 0) {
|
| thread-exits.c | 106 grower = fork(); 109 perror("fork");
|
| /hardware/libhardware/tests/camera2/ |
| TestForkerEventListener.cpp | 51 pid_t childPid = fork();
|
| /system/extras/ext4_utils/ |
| setup_fs.c | 46 child = fork(); 48 fprintf(stderr,"error: setup_fs: fork failed\n");
|
| /system/netd/ |
| ClatdController.cpp | 44 if ((pid = fork()) < 0) { 45 ALOGE("fork failed (%s)", strerror(errno));
|
| /external/linux-tools-perf/ |
| builtin-inject.c | 179 .fork = perf_event__repipe, 208 inject_ops.fork = perf_event__repipe_task;
|
| /external/blktrace/btt/ |
| bno_plot.py | 115 pid = os.fork()
|
| /external/clang/utils/ |
| CaptureCmd | 58 pid = os.fork()
|
| /external/compiler-rt/BlocksRuntime/tests/ |
| fail.c | 48 pid_t child = fork(); 65 printf("fork failed\n");
|
| /external/dropbear/ |
| cli-authpasswd.c | 67 pid = fork(); 70 TRACE(("fork error"))
|
| compat.c | 165 switch (fork()) {
|
| /external/e2fsprogs/lib/ss/ |
| pager.c | 81 switch(fork()) { 100 #else /* don't fork */
|
| /external/linux-tools-perf/bench/ |
| sched-pipe.c | 69 pid = fork();
|
| /external/valgrind/main/memcheck/tests/ |
| file_locking.c | 93 fork_result = fork(); 97 perror("fork");
|
| /libcore/dalvik/src/main/java/dalvik/system/ |
| Zygote.java | 26 * be partially initialized and then fork()'d from the partially initialized 70 * We must not fork until we're single-threaded again. Wait until /proc shows we're 97 public static int fork() { method in class:Zygote 112 * fork()ing and and before spawning any threads. 114 * fork()ing and and before spawning any threads. 116 * setgroups() to after fork and before spawning any threads. 148 * fork()ing and and before spawning any threads. 150 * fork()ing and and before spawning any threads. 152 * setgroups() to after fork and before spawning any threads.
|
| /system/core/adb/ |
| backup_service.c | 80 pid = fork(); 83 D("can't fork for %s\n", operation); 84 fprintf(stderr, "unable to fork for %s\n", operation); 138 D("fork() returned pid %d\n", pid);
|
| /external/linux-tools-perf/util/ |
| session.c | 337 if (handler->fork == NULL) 338 handler->fork = process_event_stub; 399 event->fork.pid = bswap_32(event->fork.pid); 400 event->fork.tid = bswap_32(event->fork.tid); 401 event->fork.ppid = bswap_32(event->fork.ppid); 402 event->fork.ptid = bswap_32(event->fork.ptid) [all...] |