/toolchain/binutils/binutils-2.25/libiberty/ |
vfork.c | 1 /* Emulate vfork using just plain fork, for systems without a real vfork. 8 Emulates @code{vfork} by calling @code{fork} and returning its value. 16 extern int fork (void); 21 return (fork ());
|
/hardware/bsp/intel/peripheral/libupm/src/lpd8806/ |
._jsupm_lpd8806.i | 1 Mac OS X 2 ? ? ATTR R ? ? ? com.apple.TextEncoding utf-8;134217984 This resource fork intentionally left blank (…)
|
._pyupm_lpd8806.i | 1 Mac OS X 2 ? ? ATTR U ? ? ? com.apple.TextEncoding utf-8;134217984 This resource fork intentionally left blank (…)
|
/external/ltrace/testsuite/ltrace.minor/ |
trace-fork.c | 1 /* Ltrace Test : trace-fork.c 3 fork called. 13 printf("Fork Child\n"); 21 pid = fork (); 24 puts("fork failed!");
|
/system/extras/tests/cpueater/ |
cpueater.c | 34 switch(fork()) { 44 /* fork again to fully detach from controlling terminal. */ 45 switch(pid = fork()) {
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
wait.cc | 13 pid_t pid = fork();
|
coverage-fork-direct.cc | 2 // RUN: rm -rf %T/coverage-fork-direct 3 // RUN: mkdir -p %T/coverage-fork-direct && cd %T/coverage-fork-direct 23 pid_t child_pid = fork();
|
coverage-fork.cc | 2 // RUN: rm -rf %T/coverage-fork 3 // RUN: mkdir -p %T/coverage-fork && cd %T/coverage-fork 22 pid_t child_pid = fork();
|
wait3.cc | 14 pid_t pid = fork();
|
waitid.cc | 10 pid_t pid = fork();
|
/external/compiler-rt/test/lsan/TestCases/ |
fork.cc | 16 pid_t pid = fork();
|
/external/libmicrohttpd/src/testcurl/ |
gauger.h | 25 if(!(__gauger_p=fork())){\ 26 if(!fork()){ \ 53 if(!(__gauger_p=fork())){\ 54 if(!fork()){\
|
/external/valgrind/none/tests/ |
fork.c | 11 pid = fork ();
|
/system/extras/simpleperf/runtest/ |
function_fork.cpp | 16 pid_t pid = fork();
|
/system/update_engine/init/ |
update-engine.conf | 27 expect fork
|
/bionic/libc/upstream-openbsd/lib/libc/gen/ |
daemon.c | 41 switch (fork()) {
|
/external/compiler-rt/test/tsan/ |
fork_atexit.cc | 21 int pid = fork();
|
fork_multithreaded.cc | 22 switch (fork()) { 34 fprintf(stderr, "failed to fork (%d)\n", errno); 40 // CHECK-DIE: ThreadSanitizer: starting new threads after multi-threaded fork is not supported 43 // CHECK-NODIE-NOT: ThreadSanitizer: starting new threads after multi-threaded fork is not supported
|
/external/libchrome/sandbox/linux/services/ |
resource_limits_unittests.cc | 28 // Not being able to fork breaks LeakSanitizer, so disable on 31 // Make sure that fork will fail with EAGAIN. 34 pid_t pid = fork(); 35 // Reap any child if fork succeeded.
|
/external/valgrind/gdbserver_tests/ |
fork_chain.c | 12 pid = fork(); 14 perror("fork");
|
/external/valgrind/memcheck/tests/ |
noisy_child.c | 29 child = fork(); 30 assert(child != -1); /* assert fork did not fail */
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
RecursiveActionTest.java | 250 assertSame(f, f.fork()); 268 assertSame(f, f.fork()); 278 assertSame(f, f.fork()); 291 assertSame(f, f.fork()); 304 assertSame(f, f.fork()); 314 assertSame(f, f.fork()); 323 assertSame(f, f.fork()); 354 fibActions[i].fork(); 445 assertSame(f, f.fork()); 460 assertSame(f, f.fork()); [all...] |
ForkJoinTaskTest.java | 251 y.fork(); 252 x.fork(); 352 r.fork(); 377 r.fork(); 427 assertSame(f, f.fork()); 442 assertSame(f, f.fork()); 457 assertSame(f, f.fork()); 472 assertSame(f, f.fork()); 488 assertSame(f, f.fork()); 504 assertSame(f, f.fork()); [all...] |
/external/strace/tests/ |
wait.c | 51 pid = fork(); 69 pid = fork(); 78 pid = fork();
|
/art/test/004-checker-UnsafeTest18/src/ |
Main.java | 130 // Thread fork/join. 133 private static void fork(Runnable r) { method in class:Main 198 fork(new Runnable() { method 207 fork(new Runnable() { method 216 fork(new Runnable() { method 227 fork(new Runnable() { method 236 fork(new Runnable() { method 261 // the fork(), which means there is no happens-before relation in the Java memory model 270 fork(new Runnable() { method 284 // m.l after the fork(), which means there is no happens-before relation in the Java memor 293 fork(new Runnable() { method 314 fork(new Runnable() { method [all...] |