OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WEXITSTATUS
(Results
51 - 75
of
209
) sorted by null
1
2
3
4
5
6
7
8
9
/external/ppp/pppd/plugins/
passprompt.c
100
if (
WEXITSTATUS
(wstat))
101
warn("%s exited with code %d", promptprog,
WEXITSTATUS
(status));
/external/valgrind/main/none/tests/
mmap_fcntl_bug.c
69
switch (
WEXITSTATUS
(status)) {
76
errx(1, "Child weird exit status %i",
WEXITSTATUS
(status));
async-sigs.c
61
if (!WIFEXITED(status) ||
WEXITSTATUS
(status) != 0) {
64
WIFEXITED(status) ?
WEXITSTATUS
(status) : WTERMSIG(status));
120
WIFEXITED(status) ?
WEXITSTATUS
(status) : WTERMSIG(status));
pth_atfork1.c
115
status =
WEXITSTATUS
(status);
/prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
wait.h
39
#define
WEXITSTATUS
(s) (((s) & 0xff00) >> 8)
42
#define WSTOPSIG(s)
WEXITSTATUS
(s)
/external/chromium/testing/gmock/test/
gmock_test_utils.py
84
# On Windows, os.
WEXITSTATUS
() doesn't work and os.system() returns
88
# On Unix, os.
WEXITSTATUS
() must be used to extract the exit status
91
return os.
WEXITSTATUS
(exit_code)
/system/core/logwrapper/
logwrapper.c
86
rc =
WEXITSTATUS
(status);
/system/netd/
oem_iptables_hook.cpp
65
if ((-1 == ret) || (0 !=
WEXITSTATUS
(ret))) {
NetdConstants.cpp
53
if (res || !WIFEXITED(status) ||
WEXITSTATUS
(status)) {
62
return
WEXITSTATUS
(status);
/external/chromium_org/third_party/icu/source/tools/tzcode/
private.h
97
#include <sys/wait.h> /* for WIFEXITED and
WEXITSTATUS
*/
103
#ifndef
WEXITSTATUS
104
#define
WEXITSTATUS
(status) (((status) >> 8) & 0xff)
105
#endif /* !defined
WEXITSTATUS
*/
/external/icu4c/tools/tzcode/
private.h
97
#include <sys/wait.h> /* for WIFEXITED and
WEXITSTATUS
*/
103
#ifndef
WEXITSTATUS
104
#define
WEXITSTATUS
(status) (((status) >> 8) & 0xff)
105
#endif /* !defined
WEXITSTATUS
*/
/external/valgrind/main/memcheck/tests/
addressable.c
151
if (
WEXITSTATUS
(status) == 0) {
158
WEXITSTATUS
(status));
/external/chromium_org/sandbox/linux/tests/
unit_tests.cc
190
if (!WIFEXITED(status) ||
WEXITSTATUS
(status) != kIgnoreThisTest ||
205
int subprocess_exit_status =
WEXITSTATUS
(status);
219
int subprocess_exit_status =
WEXITSTATUS
(status);
234
int subprocess_exit_status =
WEXITSTATUS
(status);
/external/chromium_org/third_party/libjingle/source/talk/base/
posix.cc
128
int exit_code =
WEXITSTATUS
(status);
/external/elfutils/tests/
asm-tst4.c
104
result =
WEXITSTATUS
(system ("\
asm-tst5.c
116
result =
WEXITSTATUS
(system ("\
/hardware/libhardware/tests/camera2/
TestForkerEventListener.cpp
60
mHasSucceeded =
WEXITSTATUS
(status) == RETURN_CODE_PASSED;
Completed in 608 milliseconds
1
2
3
4
5
6
7
8
9