/third_party/musl/libc-test/src/functionalext/fortify/ |
D | unistd.c | 52 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_001() 90 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_002() 129 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_003() 169 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_004() 208 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_005() 246 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_006() 284 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_007() 324 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_008() 363 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_009() 400 TEST(WIFEXITED(status) == 0); in unistd_dynamic_chk_010() [all …]
|
D | string_ext.c | 88 TEST(WIFEXITED(status) == 0); in test_strcat_0020() 139 TEST(WIFEXITED(status) == 0); in test_strncat_0020() 187 TEST(WIFEXITED(status) == 0); in test_stpcpy_0020() 238 TEST(WIFEXITED(status) == 0); in test_stpncpy_0020() 288 TEST(WIFEXITED(status) == 0); in test_strncpy_0020() 335 TEST(WIFEXITED(status) == 0); in test_memchr_0020() 382 TEST(WIFEXITED(status) == 0); in test_memrchr_0020() 428 TEST(WIFEXITED(status) == 0); in test_strchr_0020() 476 TEST(WIFEXITED(status) == 0); in test_strrchr_0020() 525 TEST(WIFEXITED(status) == 0); in test_strlcat_0020() [all …]
|
D | fcntl_ext.c | 63 TEST(WIFEXITED(status) == 0); in open_0020() 97 TEST(WIFEXITED(status) == 0); in open_0030() 146 TEST(WIFEXITED(status) == 0); in openat_0020() 180 TEST(WIFEXITED(status) == 0); in openat_0030() 229 TEST(WIFEXITED(status) == 0); in open64_0020() 263 TEST(WIFEXITED(status) == 0); in open64_0030() 312 TEST(WIFEXITED(status) == 0); in openat64_0020() 346 TEST(WIFEXITED(status) == 0); in openat64_0030()
|
D | stdio.c | 123 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_003() 161 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_004() 246 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_007() 309 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_010() 345 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_011() 400 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_012() 431 TEST(WIFEXITED(status) == 0); in stdio_dynamic_chk_013()
|
D | socket_ext.c | 72 TEST(WIFEXITED(status) == 0); in send_0010() 107 TEST(WIFEXITED(status) == 0); in recv_0010() 169 TEST(WIFEXITED(status) == 0); in sendto_0010() 204 TEST(WIFEXITED(status) == 0); in recvfrom_0010()
|
D | poll.c | 66 TEST(WIFEXITED(status) == 0); in poll_0020() 120 TEST(WIFEXITED(status) == 0); in ppoll_0020()
|
/third_party/libsnd/tests/ |
D | stdio_test.c | 57 #ifndef WIFEXITED 58 #define WIFEXITED(s) (((s) & 0xff) == 0) macro 95 { retval = WIFEXITED (retval) ? WEXITSTATUS (retval) : 1 ; in stdio_test() 108 { retval = WIFEXITED (retval) ? WEXITSTATUS (retval) : 1 ; in stdio_test() 115 { retval = WIFEXITED (retval) ? WEXITSTATUS (retval) : 1 ; in stdio_test()
|
/third_party/selinux/libsepol/cil/test/unit/ |
D | test_integration.c | 58 CuAssertIntEquals(tc, 1, WIFEXITED(status)); in test_integration() 60 CuAssertIntEquals(tc, 1, WIFEXITED(status1)); in test_integration() 62 CuAssertIntEquals(tc, 1, WIFEXITED(status2)); in test_integration() 74 CuAssertIntEquals(tc, 1, WIFEXITED(status)); in test_min_policy()
|
/third_party/musl/libc-test/src/regression/ |
D | pthread_exit-dtor.c | 61 if (!WIFEXITED(r) || WEXITSTATUS(r) != 1) { in main() 64 WIFEXITED(r), !WIFEXITED(r)&&WIFSIGNALED(r)?WTERMSIG(r):0, WIFEXITED(r)?WEXITSTATUS(r):0); in main()
|
/third_party/boost/boost/process/detail/posix/ |
D | is_running.hpp | 21 static_assert(!WIFEXITED(still_active), "Expected still_active to not indicate WIFEXITED"); 27 return !WIFEXITED(code) && !WIFSIGNALED(code); in is_running() 64 if (WIFEXITED(code)) in eval_exit_status()
|
D | wait_for_exit.hpp | 32 (ret != -1 && !WIFEXITED(status) && !WIFSIGNALED(status))); in wait() 128 ((ret != -1) && !WIFEXITED(status) && !WIFSIGNALED(status)))); in wait_until() 170 && (WIFEXITED(status) || WIFSIGNALED(status))) in wait_until() 191 ((ret != -1) && !WIFEXITED(status) && !WIFSIGNALED(status)))); in wait_until()
|
/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
D | ptrace05.c | 113 if (WIFEXITED(status) in main() 136 } else if (WIFEXITED(status)) { in main() 156 } else if (WIFEXITED(status)) { in main()
|
D | ptrace01.c | 105 if (((WIFEXITED(status)) && (WEXITSTATUS(status))) in run() 115 WIFEXITED(status) && WEXITSTATUS(status) == tc->exp_wifexited) || in run()
|
/third_party/glib/glib/tests/ |
D | spawn-path-search.c | 66 g_assert_true (WIFEXITED (wait_status)); in test_do_not_search() 119 g_assert_true (WIFEXITED (wait_status)); in test_search_path() 174 g_assert_true (WIFEXITED (wait_status)); in test_search_path_from_envp() 230 g_assert_true (WIFEXITED (wait_status)); in test_search_path_ambiguous() 294 g_assert_true (WIFEXITED (wait_status)); in test_search_path_fallback_in_environ() 357 g_assert_true (WIFEXITED (wait_status)); in test_search_path_fallback_in_envp() 424 g_assert_true (WIFEXITED (wait_status)); in test_search_path_heap_allocation()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/ |
D | 2-2.c | 221 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) { in main() 231 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) { in main() 241 if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) { in main()
|
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/linux/ |
D | linux_process.c | 99 ps->exit_success = WIFEXITED(status); in SDL_GetProcessExitStatus() 160 ps->exit_success = WIFEXITED(status); in SDL_QuitProcess() 194 ps->exit_success = WIFEXITED(status); in SDL_KillProcess()
|
/third_party/ltp/testcases/kernel/mem/tunable/ |
D | min_free_kbytes.c | 78 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) in min_free_kbytes_test() 124 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) in test_tune() 145 if (WIFEXITED(status)) { in test_tune()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_post/ |
D | 8-1.c | 216 if (ret_pid == c_2 && WIFEXITED(status) in main() 221 if (ret_pid == c_3 && WIFEXITED(status) in main() 226 if (ret_pid == c_1 && WIFEXITED(status) in main()
|
/third_party/ltp/testcases/kernel/syscalls/keyctl/ |
D | keyctl07.c | 87 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) { in do_test() 97 if (WIFEXITED(status) && WEXITSTATUS(status) == TCONF) in do_test()
|
/third_party/ltp/testcases/kernel/syscalls/switch/ |
D | endian_switch01.c | 50 } else if (WIFEXITED(status)) { in check_le_switch_supported() 78 } else if (WIFEXITED(status)) { in test_le_switch()
|
/third_party/musl/libc-test/src/functional/ |
D | vfork.c | 35 TEST(WIFEXITED(r), "child terminated abnormally\n"); in test_exit() 57 TEST(WIFEXITED(r), "child terminated abnormally\n"); in test_shell_exit()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
D | 11-5.c | 104 if (!(WIFEXITED(exit_val) && (WEXITSTATUS(exit_val) == PTS_PASS))) { in main() 107 if (WIFEXITED(exit_val)) in main()
|
D | 11-6.c | 106 if (!(WIFEXITED(exit_val) && (WEXITSTATUS(exit_val) == PTS_PASS))) { in main() 109 if (WIFEXITED(exit_val)) in main()
|
/third_party/ltp/testcases/kernel/containers/pidns/ |
D | pidns17.c | 117 WIFEXITED(status), WEXITSTATUS(status), in child_fn() 153 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) in main()
|
/third_party/ltp/testcases/kernel/syscalls/setpgid/ |
D | setpgid03.c | 95 if (!(WIFEXITED(status)) || (WEXITSTATUS(status) != 0)) in main() 124 if (!(WIFEXITED(status)) || (WEXITSTATUS(status) != 0)) in main()
|