OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WEXITSTATUS
(Results
1 - 25
of
409
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/external/gpl2/xcvs/dist/lib/
wait.h
40
#ifndef
WEXITSTATUS
41
#define
WEXITSTATUS
(w) (((w) >> 8) & 0xff)
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_nolibc_test.cc
29
EXPECT_EQ(0,
WEXITSTATUS
(status));
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
fork-no-detach-follow-child-dlopen.c
37
assert (WIFEXITED (wstatus) &&
WEXITSTATUS
(wstatus) == 0);
/src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_wait.h
79
#ifndef
WEXITSTATUS
81
# define
WEXITSTATUS
(w) ((w) & ~0xC0000000)
83
# define
WEXITSTATUS
(w) (((w) >> 8) & 0377) /* same as WRETCODE */
97
#define WSTOPSIG
WEXITSTATUS
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
fork-no-detach-follow-child-dlopen.c
37
assert (WIFEXITED (wstatus) &&
WEXITSTATUS
(wstatus) == 0);
/src/external/gpl3/gdb/dist/gdbsupport/
gdb_wait.h
79
#ifndef
WEXITSTATUS
81
# define
WEXITSTATUS
(w) ((w) & ~0xC0000000)
83
# define
WEXITSTATUS
(w) (((w) >> 8) & 0377) /* same as WRETCODE */
97
#define WSTOPSIG
WEXITSTATUS
/src/external/bsd/openldap/dist/include/ac/
wait.h
36
#ifndef
WEXITSTATUS
37
# define
WEXITSTATUS
(s) LDAP_HI(s)
/src/external/gpl2/lvm2/dist/lib/misc/
lvm-exec.c
88
if (
WEXITSTATUS
(status)) {
89
log_error("%s failed: %u", argv[0],
WEXITSTATUS
(status));
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
vfork-multi-inferior.c
43
assert (
WEXITSTATUS
(stat) == 12);
vfork-multi-thread.c
45
assert (
WEXITSTATUS
(stat) == 7);
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
vfork-multi-inferior.c
43
assert (
WEXITSTATUS
(stat) == 12);
vfork-multi-thread.c
45
assert (
WEXITSTATUS
(stat) == 7);
/src/external/gpl3/gdb/dist/gnulib/import/
sys_wait.in.h
47
On nearly all systems, including Linux/x86,
WEXITSTATUS
are bits 15..8 and
69
# ifndef
WEXITSTATUS
70
# define
WEXITSTATUS
(x) (((x) >> 8) & 0xff)
100
# define
WEXITSTATUS
(x) (x)
/src/external/gpl3/gdb.old/dist/gnulib/import/
sys_wait.in.h
47
On nearly all systems, including Linux/x86,
WEXITSTATUS
are bits 15..8 and
69
# ifndef
WEXITSTATUS
70
# define
WEXITSTATUS
(x) (((x) >> 8) & 0xff)
100
# define
WEXITSTATUS
(x) (x)
/src/external/gpl3/gcc/dist/libgfortran/intrinsics/
execute_command_line.c
127
_exit (WIFEXITED(res) ?
WEXITSTATUS
(res) : res);
144
#if defined(
WEXITSTATUS
) && defined(WIFEXITED)
145
|| (WIFEXITED(res) &&
WEXITSTATUS
(res) == 127)
146
|| (WIFEXITED(res) &&
WEXITSTATUS
(res) == 126)
162
#if defined(
WEXITSTATUS
) && defined(WIFEXITED)
163
*exitstat = WIFEXITED(res) ?
WEXITSTATUS
(res) : res;
/src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
execute_command_line.c
127
_exit (WIFEXITED(res) ?
WEXITSTATUS
(res) : res);
144
#if defined(
WEXITSTATUS
) && defined(WIFEXITED)
145
|| (WIFEXITED(res) &&
WEXITSTATUS
(res) == 127)
146
|| (WIFEXITED(res) &&
WEXITSTATUS
(res) == 126)
157
#if defined(
WEXITSTATUS
) && defined(WIFEXITED)
158
*exitstat = WIFEXITED(res) ?
WEXITSTATUS
(res) : res;
/src/tests/kernel/
h_fpufork.c
63
return
WEXITSTATUS
(status);
/src/tests/lib/libc/stdlib/
t_exit.c
77
if (WIFEXITED(sta) == 0 ||
WEXITSTATUS
(sta) != EXIT_SUCCESS)
105
if (WIFEXITED(sta) == 0 ||
WEXITSTATUS
(sta) != EXIT_SUCCESS)
133
if (WIFEXITED(sta) == 0 ||
WEXITSTATUS
(sta) != i)
168
if (WIFEXITED(sta) == 0 ||
WEXITSTATUS
(sta) != EXIT_SUCCESS)
/src/external/gpl2/lvm2/dist/test/
not.c
38
return !
WEXITSTATUS
(status);
/src/external/gpl3/gdb.old/dist/gdb/nat/
linux-waitpid.c
46
return string_printf ("%d (exited)",
WEXITSTATUS
(status));
/src/external/gpl3/gdb/dist/gdb/nat/
linux-waitpid.c
46
return string_printf ("%d (exited)",
WEXITSTATUS
(status));
/src/external/bsd/kyua-testers/dist/
atf_result.c
346
reason,
WEXITSTATUS
(status));
371
if (WIFEXITED(status) &&
WEXITSTATUS
(status) == EXIT_SUCCESS) {
399
if (status_arg == NO_STATUS_ARG || status_arg ==
WEXITSTATUS
(status)) {
407
"code %d but got code %d", status_arg,
WEXITSTATUS
(status));
434
if (
WEXITSTATUS
(status) == EXIT_SUCCESS) {
442
"exited with error code %d",
WEXITSTATUS
(status));
485
"signal but exited with code %d",
WEXITSTATUS
(status));
505
"exited with code %d",
WEXITSTATUS
(status));
531
if (
WEXITSTATUS
(status) == EXIT_SUCCESS) {
564
if (
WEXITSTATUS
(status) == EXIT_SUCCESS)
[
all
...]
/src/external/gpl3/gdb.old/dist/libiberty/testsuite/
test-pexecute.c
59
#ifndef
WEXITSTATUS
60
#define
WEXITSTATUS
(S) (((S) & 0xff00) >> 8)
63
#define WSTOPSIG
WEXITSTATUS
252
if (!WIFEXITED (status) ||
WEXITSTATUS
(status) != EXIT_SUCCESS)
261
if (!WIFEXITED (status) ||
WEXITSTATUS
(status) != EXIT_FAILURE)
313
if (!WIFEXITED (statuses[0]) ||
WEXITSTATUS
(statuses[0]) != EXIT_SUCCESS
314
|| !WIFEXITED (statuses[1]) ||
WEXITSTATUS
(statuses[1]) != EXIT_SUCCESS)
331
if (!WIFEXITED (statuses[0]) ||
WEXITSTATUS
(statuses[0]) != EXIT_SUCCESS
332
|| !WIFEXITED (statuses[1]) ||
WEXITSTATUS
(statuses[1]) != EXIT_SUCCESS)
349
if (!WIFEXITED (statuses[0]) ||
WEXITSTATUS
(statuses[0]) != EXIT_SUCCES
[
all
...]
/src/external/gpl3/gdb/dist/libiberty/testsuite/
test-pexecute.c
59
#ifndef
WEXITSTATUS
60
#define
WEXITSTATUS
(S) (((S) & 0xff00) >> 8)
63
#define WSTOPSIG
WEXITSTATUS
252
if (!WIFEXITED (status) ||
WEXITSTATUS
(status) != EXIT_SUCCESS)
261
if (!WIFEXITED (status) ||
WEXITSTATUS
(status) != EXIT_FAILURE)
313
if (!WIFEXITED (statuses[0]) ||
WEXITSTATUS
(statuses[0]) != EXIT_SUCCESS
314
|| !WIFEXITED (statuses[1]) ||
WEXITSTATUS
(statuses[1]) != EXIT_SUCCESS)
331
if (!WIFEXITED (statuses[0]) ||
WEXITSTATUS
(statuses[0]) != EXIT_SUCCESS
332
|| !WIFEXITED (statuses[1]) ||
WEXITSTATUS
(statuses[1]) != EXIT_SUCCESS)
349
if (!WIFEXITED (statuses[0]) ||
WEXITSTATUS
(statuses[0]) != EXIT_SUCCES
[
all
...]
/src/tests/lib/libc/c063/
t_fexecve.c
81
if (
WEXITSTATUS
(status) == 76)
84
ATF_REQUIRE(
WEXITSTATUS
(status) == EXIT_SUCCESS);
Completed in 44 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Mon Apr 13 00:22:24 UTC 2026