Home
last modified time | relevance | path

Searched refs:vfork (Results 1 – 25 of 104) sorted by relevance

12345

/external/clang/test/Analysis/
Dvfork.c10 pid_t pid = vfork(); // expected-warning{{Call to function 'vfork' is insecure}} in f1()
40 pid_t pid = vfork(); // expected-warning{{Call to function 'vfork' is insecure}} in f2()
68 if (vfork() == 0) // expected-warning{{Call to function 'vfork' is insecure}} in f3()
79 vfork(); // expected-warning{{Call to function 'vfork' is insecure}} in f4()
86 switch (vfork()) { // expected-warning{{Call to function 'vfork' is insecure}} in f4()
97 if ((pid = vfork()) == 0) // expected-warning{{Call to function 'vfork' is insecure}} in f4()
109 if (vfork() == 0) { // expected-warning{{Call to function 'vfork' is insecure}} in f5()
Dsecurity-syntax-checks.m174 // vfork()
178 pid_t vfork(void); function
181vfork(); //expected-warning{{Call to function 'vfork' is insecure as it can lead to denial of serv…
/external/ltp/testcases/kernel/controllers/freezer/
DTODO38 ./freezer/vfork_freeze.sh:10: echo "ERROR: Failed to build vfork test binary." 1>&2
41 ./freezer/vfork.c:37:perror("ERROR at " __FILE__ ":" str_expand(__LINE__) ": " s )
44 Binary file ./freezer/vfork matches
47 ./freezer/vfork.c:58: exit(EXIT_FAILURE);
48 ./freezer/vfork.c:180: exit(EXIT_FAILURE);
49 ./freezer/vfork.c:186: exit(EXIT_FAILURE);
50 ./freezer/vfork.c:268: exit(EXIT_FAILURE);
51 ./freezer/vfork.c:287: exit(EXIT_FAILURE);
52 ./freezer/vfork.c:300: exit(EXIT_FAILURE);
53 ./freezer/vfork.c:306: exit(EXIT_FAILURE);
[all …]
DREADME25 vfork -- The vfork system call introduces an obscure special case for
27 unanticipated corner cases involving vfork.
D00_description.txt57 This bash script tests freezer code by starting a process with vfork(2).
58 vfork causes the freezer to wait until the vfork call "returns" to the
59 parent. We need the vfork test binary -- ensure it's been built.
D.gitignore3 /vfork
Dvfork_freeze.sh65 vfork -s$sample_sleep 1 -f "$TMPLOG" &
/external/clang/test/CodeGen/
D2003-08-20-vfork-bug.c3 extern int vfork(void);
5 vfork(); in test()
/external/clang/test/Sema/
Dpid_t.c11 pid_t vfork(void);
/external/toybox/toys/pending/
Dinit.c235 else pid = vfork(); in final_run()
359 pid = vfork(); in halt_poweroff_reboot_handler()
387 pid = vfork(); in restart_init_handler()
/external/ltp/doc/
Dnommu-notes.txt65 To run a program, simply use vfork() followed by an exec-style function.
67 works under both MMU and NOMMU systems. But be aware of vfork() semantics --
70 pid_t child = vfork();
71 if (vfork == 0)
/external/ltp/m4/
Dltp-nommu-linux.m411 AC_CHECK_FUNCS([fork daemon vfork])
/external/compiler-rt/test/tsan/
Dvfork.cc27 int pid = vfork(); in main()
/external/strace/tests-m32/
Dvfork-f.c73 pid_t pid = vfork(); in main()
/external/ltp/testcases/kernel/syscalls/
DMakefile45 setdomainname sethostname symlinkat ulimit ustat vfork vhangup vmsplice
/external/strace/tests/
Dvfork-f.c73 pid_t pid = vfork(); in main()
/external/strace/tests-mx32/
Dvfork-f.c73 pid_t pid = vfork(); in main()
/external/ltp/testcases/kernel/syscalls/vfork/
Dvfork02.c109 TEST(vfork()); in main()
Dvfork01.c125 TEST(vfork()); in main()
/external/toybox/toys/other/
Doneit.c61 if (!vfork()) reboot(action);
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator.h98 pid_t vfork(void);
/external/ltp/testcases/kernel/syscalls/ptrace/
Dspawn_ptrace_child.h70 pid = vfork(); in make_a_baby()
/external/ltp/lib/
Dtst_run_cmd.c58 pid_t pid = vfork(); in tst_run_cmd_fds_()
/external/strace/linux/aarch64/
Dsyscallent.h65 [1071] = { 0, TP, SEN(vfork), "vfork" },
/external/libpcap/lbl/
Dos-sunos4.h184 int vfork(void);

12345