/external/clang/test/Analysis/ |
D | vfork.c | 10 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/ |
D | vfork.c | 10 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/ |
D | sanitizer_common_interceptors_vfork_x86_64.inc.S | 6 .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
|
D | sanitizer_common_interceptors_vfork_aarch64.inc.S | 8 .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
|
D | sanitizer_common_interceptors_vfork_riscv64.inc.S | 8 .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
|
D | sanitizer_common_interceptors_vfork_arm.inc.S | 8 .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
|
D | sanitizer_common_interceptors_vfork_i386.inc.S | 6 .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/ |
D | clang-analyzer-security.insecureAPI.vfork.rst | 1 .. 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>`_
|
D | clang-analyzer-unix.Vfork.rst | 3 :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/ |
D | TODO | 38 ./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 …]
|
D | README | 25 vfork -- The vfork system call introduces an obscure special case for 27 unanticipated corner cases involving vfork.
|
D | 00_description.txt | 57 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 | .gitignore | 3 /vfork
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | indirect-branch-tracking-r2.ll | 8 ;; 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/ |
D | 2003-08-20-vfork-bug.c | 3 extern int vfork(void); 5 vfork(); in test()
|
/external/llvm-project/clang/test/CodeGen/ |
D | 2003-08-20-vfork-bug.c | 3 extern int vfork(void); 5 vfork(); in test()
|
/external/toybox/scripts/ |
D | mcm-buildall.sh | 153 + 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/ |
D | CHANGELOG.md | 28 * 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/ |
D | lws_config_private.h.in | 83 /* 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/ |
D | hwasan_interceptors.cpp | 229 DEFINE_REAL(int, vfork) 230 DECLARE_EXTERN_INTERCEPTOR_AND_WRAPPER(int, vfork) 342 INTERCEPT_FUNCTION(vfork); in InitializeInterceptors()
|
/external/llvm-project/clang/test/Sema/ |
D | pid_t.c | 11 pid_t vfork(void);
|
/external/clang/test/Sema/ |
D | pid_t.c | 11 pid_t vfork(void);
|
/external/llvm-project/compiler-rt/test/asan/TestCases/Linux/ |
D | vfork.cpp | 25 if (vfork()) in main()
|
/external/llvm-project/compiler-rt/test/hwasan/TestCases/Linux/ |
D | vfork.c | 26 if (vfork()) in main()
|
/external/ltp/m4/ |
D | ltp-nommu-linux.m4 | 7 AC_CHECK_FUNCS([fork daemon vfork])
|