HomeSort by relevance Sort by last modified time
    Searched defs:exit_code (Results 76 - 81 of 81) sorted by null

1 2 34

  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 149 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) {
182 static std::string ExitSummary(int exit_code) {
187 m << "Exited with exit status " << exit_code; local
191 if (WIFEXITED(exit_code)) {
192 m << "Exited with exit status " << WEXITSTATUS(exit_code);
193 } else if (WIFSIGNALED(exit_code)) {
194 m << "Terminated by signal " << WTERMSIG(exit_code);
197 if (WCOREDUMP(exit_code)) {
    [all...]
  /system/update_engine/common/
utils.cc 589 int exit_code; local
597 TEST_AND_RETURN_FALSE(Subprocess::SynchronousExec(cmd, &exit_code, nullptr));
598 TEST_AND_RETURN_FALSE(exit_code == 0);
605 TEST_AND_RETURN_FALSE(Subprocess::SynchronousExec(cmd, &exit_code, nullptr));
606 TEST_AND_RETURN_FALSE(exit_code == 0);
    [all...]
  /external/strace/
strace.c 141 static int exit_code = 0; variable
    [all...]
  /external/v8/src/
d8.cc 883 int exit_code = (*args)[0] local
890 Exit(exit_code);
    [all...]
  /ndk/sources/host-tools/make-3.81/
job.c 378 EXIT_CODE, EXIT_SIG, and COREDUMP, for the target TARGET_NAME.
382 child_error (char *target_name, int exit_code, int exit_sig, int coredump,
389 if (!(exit_code & 1))
393 target_name, exit_code);
398 target_name, exit_code);
478 int exit_code, exit_sig, coredump;
532 pid = remote_status (&exit_code, &exit_sig, &coredump, 0);
574 exit_code = WEXITSTATUS (status);
591 pid = remote_status (&exit_code, &exit_sig, &coredump, 1);
607 exit_code = WEXITSTATUS (status)
474 int exit_code, exit_sig, coredump; local
    [all...]
  /system/core/adb/
commandline.cpp 300 int exit_code = 0; local
301 if (fd < 0) return exit_code;
331 exit_code = protocol->data()[0];
348 return callback->Done(exit_code);
696 int exit_code = 1; local
701 exit_code = read_and_dump(fd, use_shell_protocol);
710 return exit_code;
1164 int exit_code = read_and_dump(fd, use_shell_protocol, callback); local
    [all...]

Completed in 973 milliseconds

1 2 34