HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 276 - 300 of 313) sorted by null

<<111213

  /external/valgrind/tests/
vg_regtest.in 370 my $exit_code = system($_[0]);
371 ($exit_code == 2) and exit 1; # 2 is SIGINT
372 return $exit_code;
  /system/core/adb/
commandline.cpp 270 int exit_code = 0; local
271 if (fd < 0) return exit_code;
301 exit_code = protocol->data()[0];
318 return callback->Done(exit_code);
666 int exit_code = 1; local
671 exit_code = read_and_dump(fd, use_shell_protocol);
680 return exit_code;
1133 int exit_code = read_and_dump(fd, use_shell_protocol, callback); local
    [all...]
  /system/update_engine/common/
utils.cc 582 int exit_code; local
590 TEST_AND_RETURN_FALSE(Subprocess::SynchronousExec(cmd, &exit_code, nullptr));
591 TEST_AND_RETURN_FALSE(exit_code == 0);
598 TEST_AND_RETURN_FALSE(Subprocess::SynchronousExec(cmd, &exit_code, nullptr));
599 TEST_AND_RETURN_FALSE(exit_code == 0);
    [all...]
  /external/libchrome/base/memory/
shared_memory_unittest.cc 679 int exit_code = 0; local
681 EXPECT_TRUE(processes[index].WaitForExit(&exit_code));
682 EXPECT_EQ(0, exit_code);
  /external/libcxx/test/support/
rapid-cxx-test.hpp     [all...]
  /external/selinux/policycoreutils/secon/
secon.c 76 static void usage(const char *name, int exit_code)
78 fprintf(exit_code ? stderr : stdout,
108 exit(exit_code);
  /external/v8/src/
d8.h 137 void ExitShell(int exit_code);
333 static void Exit(int exit_code);
d8-posix.cc 775 void Shell::Exit(int exit_code) {
780 _exit(exit_code);
  /external/autotest/scheduler/
pidfile_monitor.py 187 def exit_code(self): member in class:PidfileRunMonitor
drone_manager_unittest.py 491 self.assertTrue(monitor.exit_code() == 12)
  /external/ltp/testcases/kernel/connectors/pec/
pec_listener.c 214 printf("exit pid: %d exit_code: %d exit_signal: %d\n",
216 pe->event_data.exit.exit_code,
  /external/compiler-rt/lib/msan/
msan.cc 187 // Check if deprecated exit_code MSan flag is set.
188 if (f->exit_code != -1) {
190 Printf("MSAN_OPTIONS=exit_code is deprecated! "
194 cf.exitcode = f->exit_code;
  /external/v8/samples/
shell.cc 222 int exit_code = local
226 exit(exit_code);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
sysmodule.c 209 PyObject *exit_code = 0; local
210 if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
213 PyErr_SetObject(PyExc_SystemExit, exit_code);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
sysmodule.c 209 PyObject *exit_code = 0; local
210 if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
213 PyErr_SetObject(PyExc_SystemExit, exit_code);
    [all...]
  /external/dhcpcd-6.8.2/
dhcpcd.c 1186 int do_release, exit_code;; local
1191 exit_code = EXIT_FAILURE;
1198 exit_code = EXIT_SUCCESS;
1203 exit_code = EXIT_SUCCESS;
1237 eloop_exit(ctx->eloop, exit_code);
    [all...]
  /system/update_engine/scripts/update_payload/
checker.py 434 exit_code = run_process.wait()
436 if exit_code:
438 (cmd, exit_code))
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-death-test_test.cc 231 static int NormalExitStatus(int exit_code) {
234 _exit(exit_code);
    [all...]
  /external/googletest/googletest/test/
gtest-death-test_test.cc 229 static int NormalExitStatus(int exit_code) {
232 _exit(exit_code);
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 217 static int NormalExitStatus(int exit_code) {
220 _exit(exit_code);
    [all...]
  /external/v8/testing/gtest/test/
gtest-death-test_test.cc 229 static int NormalExitStatus(int exit_code) {
232 _exit(exit_code);
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-death-test_test.cc 229 static int NormalExitStatus(int exit_code) {
232 _exit(exit_code);
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest-death-test_test.cc 230 static int NormalExitStatus(int exit_code) {
233 _exit(exit_code);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest-death-test_test.cc 230 static int NormalExitStatus(int exit_code) {
233 _exit(exit_code);
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]

Completed in 1432 milliseconds

<<111213