HomeSort by relevance Sort by last modified time
    Searched defs:exitcode (Results 26 - 33 of 33) sorted by null

12

  /external/libevent/test/
regress_util.c 492 fatalfn(int exitcode)
499 exit(exitcode);
509 int status = 0, exitcode; local
518 exitcode = WEXITSTATUS(status);
519 tt_int_op(wantexitcode, ==, exitcode);
    [all...]
  /external/python/cpython3/Python/
pythonrun.c 552 int exitcode = 0; local
577 exitcode = (int)PyLong_AsLong(value);
592 exitcode = 1;
602 Py_Exit(exitcode);
    [all...]
  /test/vts/runners/target/gtest/
gtest_main.cpp 830 int exitcode = WEXITSTATUS(child_proc.exit_status); local
831 testcase.SetTestResult(test_id, exitcode == 0 ? TEST_SUCCESS : TEST_FAILED);
832 if (exitcode != 0) {
834 snprintf(buf, sizeof(buf), "%s exited with exitcode %d.\n",
835 testcase.GetTestName(test_id).c_str(), exitcode);
    [all...]
  /bionic/tests/
gtest_main.cpp 868 int exitcode = WEXITSTATUS(child_proc.exit_status); local
869 testcase.SetTestResult(test_id, exitcode == 0 ? TEST_SUCCESS : TEST_FAILED);
870 if (exitcode != 0) {
872 snprintf(buf, sizeof(buf), "%s exited with exitcode %d.\n",
873 testcase.GetTestName(test_id).c_str(), exitcode);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pythonrun.c 1106 int exitcode = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pythonrun.c 1081 int exitcode = 0; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 336 void internal__exit(int exitcode) {
338 internal_syscall(SYSCALL(exit), exitcode); local
340 internal_syscall(SYSCALL(exit_group), exitcode);
    [all...]
  /external/python/cpython2/Python/
pythonrun.c 1105 int exitcode = 0; local
1131 exitcode = (int)PyInt_AsLong(value);
1141 exitcode = 1;
    [all...]

Completed in 574 milliseconds

12