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

1 2 3 4 5

  /external/clang/test/CodeGen/
2003-08-20-vfork-bug.c 3 extern int vfork(void);
5 vfork();
  /toolchain/binutils/binutils-2.27/libiberty/
vfork.c 1 /* Emulate vfork using just plain fork, for systems without a real vfork.
6 @deftypefn Supplemental int vfork (void)
8 Emulates @code{vfork} by calling @code{fork} and returning its value.
19 vfork (void) function
msdos.c 1 char msg[] = "No vfork available - aborting\n";
2 vfork() function
  /external/clang/test/Sema/
pid_t.c 11 pid_t vfork(void)
  /external/clang/test/Analysis/
vfork.c 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,security.insecureAPI.vfork,unix.Vfork -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,security.insecureAPI.vfork,unix.Vfork -verify -x c++ %s
10 pid_t pid = vfork(); // expected-warning{{Call to function 'vfork' is insecure}}
24 x = 0; // expected-warning{{This assignment is prohibited after a successful vfork}}
28 foo(); // expected-warning{{This function call is prohibited after a successful vfork}}
32 return 0; // expected-warning{{Return is prohibited after a successful vfork; call _exit() instead}}
40 pid_t pid = vfork(); // expected-warning{{Call to function 'vfork' is insecure}
    [all...]
  /bionic/libc/arch-arm/bionic/
vfork.S 31 ENTRY(vfork) function
32 __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(vfork)
47 END(vfork)
  /bionic/libc/arch-x86/bionic/
vfork.S 33 ENTRY(vfork) function
34 __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(vfork)
53 END(vfork)
  /bionic/libc/arch-x86_64/bionic/
vfork.S 33 ENTRY(vfork) function
34 __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(vfork)
52 END(vfork)
  /bionic/libc/arch-arm64/bionic/
vfork.S 33 ENTRY(vfork) function
34 __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(vfork)
54 END(vfork)
  /bionic/libc/arch-mips64/bionic/
vfork.S 44 LEAF(vfork,FRAMESZ)
45 __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(vfork)
49 SETUP_GP64($a5, vfork)
78 END(vfork)
  /bionic/libc/arch-mips/bionic/
vfork.S 36 ENTRY(vfork) function
37 __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(vfork)
67 END(vfork)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
defbug.s 4 .export vfork ! .label vfork ! .proc! .callinfo no_calls! .entry ! .label __vfork ! mtsp %r0,%sr0! ldil L%0xc0000004,%r1! ble R%0xc0000004(%sr0,%r1)! ldi 66 ,%r22 ! b,n yyy! b,n __vfork ! b _seterrno! copy %r28,%r26! .label yyy
  /external/compiler-rt/test/tsan/
vfork.cc 27 int pid = vfork();
29 fprintf(stderr, "FAIL to vfork\n");
34 // Strictly saying this is undefined behavior, because vfork child is not
50 // CHECK-NOT: FAIL to vfork
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
system.c 58 switch (cpid = vfork()) {
  /external/ltp/testcases/kernel/controllers/freezer/
vfork_freeze.sh 22 # This bash script tests freezer code by starting a process with vfork(2).
23 # vfork causes the freezer to wait until the vfork call "returns" to the
27 # we need the vfork test binary -- ensure it's been built
30 if [ ! -x "$CGROUPS_TESTROOT/vfork" ] ; then
59 # We replace the normal sample process with a process which uses vfork to
60 # create new processes. The vfork'ed processes then sleep, causing the
65 vfork -s$sample_sleep 1 -f "$TMPLOG" &
  /external/ltp/testcases/kernel/syscalls/
Makefile 45 setdomainname sethostname symlinkat ulimit ustat vfork vhangup vmsplice
  /external/ltp/testcases/kernel/syscalls/vfork/
vfork02.c 24 * Fork a process using vfork() and verify that, the pending signals in
106 * Call vfork(2) to create a child process without
109 TEST(vfork());
112 tst_resm(TFAIL, "vfork() Failed, errno=%d : %s",
147 tst_resm(TPASS, "Call to vfork() "
  /external/strace/tests/
vfork-f.c 42 #define prefix "vfork-f."
73 pid_t pid = vfork();
76 perror_msg_and_fail("vfork");
  /external/strace/tests-m32/
vfork-f.c 42 #define prefix "vfork-f."
73 pid_t pid = vfork();
76 perror_msg_and_fail("vfork");
  /external/strace/tests-mx32/
vfork-f.c 42 #define prefix "vfork-f."
73 pid_t pid = vfork();
76 perror_msg_and_fail("vfork");
  /external/toybox/toys/other/
oneit.c 60 if (!vfork()) reboot(action);
  /external/clang/test/Analysis/Inputs/
system-header-simulator.h 98 pid_t vfork(void);
  /external/dhcpcd-6.8.2/compat/
posix_spawn.c 96 p = vfork();
  /external/ltp/lib/
tst_run_cmd.c 58 pid_t pid = vfork();
60 tst_brkm(TBROK | TERRNO, cleanup_fn, "vfork failed at %s:%d",
  /external/ltp/testcases/kernel/syscalls/ptrace/
spawn_ptrace_child.h 22 #include <unistd.h> /* execlp() sleep() vfork() */
70 pid = vfork();
72 tst_resm(TFAIL, "vfork() failed");

Completed in 647 milliseconds

1 2 3 4 5