Home
last modified time | relevance | path

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

123456

/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()
/external/llvm-project/clang/test/Analysis/
Dvfork.c10 pid_t pid = vfork(); // expected-warning{{Call to function 'vfork' is insecure}} in f1()
62 pid_t pid = vfork(); // expected-warning{{Call to function 'vfork' is insecure}} in f2()
90 if (vfork() == 0) // expected-warning{{Call to function 'vfork' is insecure}} in f3()
101 vfork(); // expected-warning{{Call to function 'vfork' is insecure}} in f4()
108 switch (vfork()) { // expected-warning{{Call to function 'vfork' is insecure}} in f4()
119 if ((pid = vfork()) == 0) // expected-warning{{Call to function 'vfork' is insecure}} in f4()
131 if (vfork() == 0) { // expected-warning{{Call to function 'vfork' is insecure}} in f5()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors_vfork_x86_64.inc.S6 .globl ASM_WRAPPER_NAME(vfork)
7 ASM_TYPE_FUNCTION(ASM_WRAPPER_NAME(vfork))
8 ASM_WRAPPER_NAME(vfork):
36 ASM_SIZE(vfork)
38 .weak vfork
39 .set vfork, ASM_WRAPPER_NAME(vfork) define
Dsanitizer_common_interceptors_vfork_aarch64.inc.S8 .globl ASM_WRAPPER_NAME(vfork)
9 ASM_TYPE_FUNCTION(ASM_WRAPPER_NAME(vfork))
10 ASM_WRAPPER_NAME(vfork):
38 ASM_SIZE(vfork)
40 .weak vfork
41 .set vfork, ASM_WRAPPER_NAME(vfork) define
Dsanitizer_common_interceptors_vfork_riscv64.inc.S8 .globl ASM_WRAPPER_NAME(vfork)
9 ASM_TYPE_FUNCTION(ASM_WRAPPER_NAME(vfork))
10 ASM_WRAPPER_NAME(vfork):
51 ASM_SIZE(vfork)
53 .weak vfork
54 .set vfork, ASM_WRAPPER_NAME(vfork) define
Dsanitizer_common_interceptors_vfork_arm.inc.S8 .globl ASM_WRAPPER_NAME(vfork)
9 ASM_TYPE_FUNCTION(ASM_WRAPPER_NAME(vfork))
10 ASM_WRAPPER_NAME(vfork):
44 ASM_SIZE(vfork)
46 .weak vfork
47 .set vfork, ASM_WRAPPER_NAME(vfork) define
Dsanitizer_common_interceptors_vfork_i386.inc.S6 .globl ASM_WRAPPER_NAME(vfork)
7 ASM_TYPE_FUNCTION(ASM_WRAPPER_NAME(vfork))
8 ASM_WRAPPER_NAME(vfork):
58 ASM_SIZE(vfork)
60 .weak vfork
61 .set vfork, ASM_WRAPPER_NAME(vfork) define
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dclang-analyzer-security.insecureAPI.vfork.rst1 .. title:: clang-tidy - clang-analyzer-security.insecureAPI.vfork
3 …-equiv=refresh: 5;URL=https://clang.llvm.org/docs/analyzer/checkers.html#security-insecureapi-vfork
5 clang-analyzer-security.insecureAPI.vfork
8 The clang-analyzer-security.insecureAPI.vfork check is an alias, please see
9 …vailable Checkers <https://clang.llvm.org/docs/analyzer/checkers.html#security-insecureapi-vfork>`_
Dclang-analyzer-unix.Vfork.rst3 :http-equiv=refresh: 5;URL=https://clang.llvm.org/docs/analyzer/checkers.html#unix-vfork
9 …tatic Analyzer Available Checkers <https://clang.llvm.org/docs/analyzer/checkers.html#unix-vfork>`_
/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
/external/llvm-project/llvm/test/CodeGen/X86/
Dindirect-branch-tracking-r2.ll8 ;; setjmp, sigsetjmp, savectx, vfork, getcontext
20 ; X64: callq vfork
33 ; X86: calll vfork
46 %call5 = call i32 @vfork() #1
64 declare dso_local i32 @vfork() #1
/external/clang/test/CodeGen/
D2003-08-20-vfork-bug.c3 extern int vfork(void);
5 vfork(); in test()
/external/llvm-project/clang/test/CodeGen/
D2003-08-20-vfork-bug.c3 extern int vfork(void);
5 vfork(); in test()
/external/toybox/scripts/
Dmcm-buildall.sh153 + switch(vfork()) {
158 + switch(vfork()) {
206 tee $(for i in patches/gcc-*; do echo $i/099-vfork.patch; done) > /dev/null << 'EOF'
212 + ch_id = vfork ();
/external/perfetto/src/profiling/memory/
DCHANGELOG.md28 * Try to auto-detect if a process uses `vfork(2)` or `clone(2)` with
29 `CLONE_VM`. In Android 10, doing memory operations in a vfork-ed child (in
/external/libwebsockets/cmake/
Dlws_config_private.h.in83 /* Define to 1 if you have the `vfork' function. */
86 /* Define to 1 if you have the <vfork.h> header file. */
92 /* Define to 1 if `vfork' works. */
/external/llvm-project/compiler-rt/lib/hwasan/
Dhwasan_interceptors.cpp229 DEFINE_REAL(int, vfork)
230 DECLARE_EXTERN_INTERCEPTOR_AND_WRAPPER(int, vfork)
342 INTERCEPT_FUNCTION(vfork); in InitializeInterceptors()
/external/llvm-project/clang/test/Sema/
Dpid_t.c11 pid_t vfork(void);
/external/clang/test/Sema/
Dpid_t.c11 pid_t vfork(void);
/external/llvm-project/compiler-rt/test/asan/TestCases/Linux/
Dvfork.cpp25 if (vfork()) in main()
/external/llvm-project/compiler-rt/test/hwasan/TestCases/Linux/
Dvfork.c26 if (vfork()) in main()
/external/ltp/m4/
Dltp-nommu-linux.m47 AC_CHECK_FUNCS([fork daemon vfork])

123456