OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WEXITSTATUS
(Results
76 - 100
of
209
) sorted by null
1
2
3
4
5
6
7
8
9
/bootable/recovery/
install.cpp
170
if (!WIFEXITED(status) ||
WEXITSTATUS
(status) != 0) {
171
LOGE("Error in %s\n(Status %d)\n", path,
WEXITSTATUS
(status));
/external/oprofile/daemon/
init.c
301
if (WIFEXITED(child_status) && (!
WEXITSTATUS
(child_status))) {
305
WEXITSTATUS
(child_status));
/external/protobuf/gtest/test/
gtest_test_utils.py
180
# On Windows, os.
WEXITSTATUS
() doesn't work and os.system() returns
184
# On Unix, os.
WEXITSTATUS
() must be used to extract the exit status
187
return os.
WEXITSTATUS
(exit_code)
251
self._return_code = os.
WEXITSTATUS
(ret_code)
/system/vold/
Fat.cpp
83
status =
WEXITSTATUS
(status);
217
status =
WEXITSTATUS
(status);
Ext4.cpp
95
status =
WEXITSTATUS
(status);
/external/compiler-rt/BlocksRuntime/tests/
fail.c
74
if (
WEXITSTATUS
(status) == 0) {
78
//printf("exit status of child %d was %d\n", child,
WEXITSTATUS
(status));
/external/dropbear/
cli-authpasswd.c
103
if (!WIFEXITED(status) ||
WEXITSTATUS
(status) != 0)
/external/elfutils/tests/
asm-tst6.c
150
result =
WEXITSTATUS
(system ("\
/external/valgrind/main/none/tests/
thread-exits.c
125
else if (WIFEXITED(status) &&
WEXITSTATUS
(status) == 0)
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
wait.h
82
# define
WEXITSTATUS
(status) __WEXITSTATUS(__WAIT_INT(status))
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
wait.h
82
# define
WEXITSTATUS
(status) __WEXITSTATUS(__WAIT_INT(status))
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
wait.h
82
# define
WEXITSTATUS
(status) __WEXITSTATUS(__WAIT_INT(status))
/external/bison/darwin-lib/sys/
wait.h
349
On nearly all systems, including Linux/x86,
WEXITSTATUS
are bits 15..8 and
371
# ifndef
WEXITSTATUS
372
# define
WEXITSTATUS
(x) (((x) >> 8) & 0xff)
402
# define
WEXITSTATUS
(x) (x)
/external/bison/linux-lib/sys/
wait.h
349
On nearly all systems, including Linux/x86,
WEXITSTATUS
are bits 15..8 and
371
# ifndef
WEXITSTATUS
372
# define
WEXITSTATUS
(x) (((x) >> 8) & 0xff)
402
# define
WEXITSTATUS
(x) (x)
/external/dnsmasq/src/
lease.c
122
if (!leasestream || (rc = pclose(leasestream)) == -1 ||
WEXITSTATUS
(rc) == 127 ||
WEXITSTATUS
(rc) == 126)
124
if (
WEXITSTATUS
(rc) == 127)
126
else if (
WEXITSTATUS
(rc) == 126)
131
if (
WEXITSTATUS
(rc) != 0)
133
sprintf(daemon->dhcp_buff, "%d",
WEXITSTATUS
(rc));
134
die(_("lease-init script returned exit code %s"), daemon->dhcp_buff,
WEXITSTATUS
(rc) + EC_INIT_OFFSET);
/external/chromium_org/base/process/
kill_posix.cc
124
if (WIFEXITED(status) &&
WEXITSTATUS
(status) != 0)
216
*exit_code =
WEXITSTATUS
(status);
240
*exit_code =
WEXITSTATUS
(status);
/external/qemu/
migration-exec.c
56
&&
WEXITSTATUS
(ret) == 0) {
/system/core/libctest/
ctest.c
109
return
WEXITSTATUS
(status);
/bionic/libc/tzcode/
private.h
87
#include <sys/wait.h> /* for WIFEXITED and
WEXITSTATUS
*/
93
#ifndef
WEXITSTATUS
94
#define
WEXITSTATUS
(status) (((status) >> 8) & 0xff)
95
#endif /* !defined
WEXITSTATUS
*/
/external/bison/lib/
wait-process.c
352
if (
WEXITSTATUS
(status) == 127)
359
return
WEXITSTATUS
(status);
/external/chromium/testing/gtest/test/
gtest_test_utils.py
180
# On Windows, os.
WEXITSTATUS
() doesn't work and os.system() returns
184
# On Unix, os.
WEXITSTATUS
() must be used to extract the exit status
187
return os.
WEXITSTATUS
(exit_code)
279
self._return_code = os.
WEXITSTATUS
(ret_code)
/external/chromium_org/testing/gtest/test/
gtest_test_utils.py
180
# On Windows, os.
WEXITSTATUS
() doesn't work and os.system() returns
184
# On Unix, os.
WEXITSTATUS
() must be used to extract the exit status
187
return os.
WEXITSTATUS
(exit_code)
279
self._return_code = os.
WEXITSTATUS
(ret_code)
/external/chromium_org/tools/android/forwarder2/
daemon.cc
88
if (WIFEXITED(status) &&
WEXITSTATUS
(status) == 0)
95
string_builder.Append("status %d.",
WEXITSTATUS
(status));
/external/gtest/test/
gtest_test_utils.py
180
# On Windows, os.
WEXITSTATUS
() doesn't work and os.system() returns
184
# On Unix, os.
WEXITSTATUS
() must be used to extract the exit status
187
return os.
WEXITSTATUS
(exit_code)
279
self._return_code = os.
WEXITSTATUS
(ret_code)
/ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py
180
# On Windows, os.
WEXITSTATUS
() doesn't work and os.system() returns
184
# On Unix, os.
WEXITSTATUS
() must be used to extract the exit status
187
return os.
WEXITSTATUS
(exit_code)
279
self._return_code = os.
WEXITSTATUS
(ret_code)
Completed in 750 milliseconds
1
2
3
4
5
6
7
8
9