/external/gtest/test/ |
gtest_test_utils.py | 172 def GetExitStatus(exit_code): 176 exit_code: the result value of os.system(command). 182 return exit_code 186 if os.WIFEXITED(exit_code): 187 return os.WEXITSTATUS(exit_code) 212 exit_code The code with which the child process exited. 288 self.exit_code = self._return_code
|
/external/protobuf/gtest/test/ |
gtest_test_utils.py | 172 def GetExitStatus(exit_code): 176 exit_code: the result value of os.system(command). 182 return exit_code 186 if os.WIFEXITED(exit_code): 187 return os.WEXITSTATUS(exit_code) 201 exit_code The code with which the child proces exited. 260 self.exit_code = self._return_code
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_test_utils.py | 172 def GetExitStatus(exit_code): 176 exit_code: the result value of os.system(command). 182 return exit_code 186 if os.WIFEXITED(exit_code): 187 return os.WEXITSTATUS(exit_code) 212 exit_code The code with which the child process exited. 288 self.exit_code = self._return_code
|
/external/chromium_org/content/zygote/ |
zygote_linux.cc | 203 int exit_code; local 205 GetTerminationStatus(child, true /* known_dead */, &status, &exit_code); 214 int* exit_code) { 228 if (!helper_->GetTerminationStatus(child, known_dead, status, exit_code)) { 234 *status = base::GetKnownDeadTerminationStatus(child, exit_code); 238 *status = base::GetTerminationStatus(child, exit_code); 263 int exit_code; local 266 GetTerminationStatus(child_requested, known_dead, &status, &exit_code); 272 exit_code = RESULT_CODE_NORMAL_EXIT; 277 write_pickle.WriteInt(exit_code); [all...] |
/external/compiler-rt/lib/msan/ |
msan.cc | 124 ParseFlag(str, &f->exit_code, "exit_code"); 125 if (f->exit_code < 0 || f->exit_code > 127) { 126 Printf("Exit code not in [0, 128) range: %d\n", f->exit_code); 127 f->exit_code = 1; 150 f->exit_code = 77; 309 void __msan_set_exit_code(int exit_code) { 310 flags()->exit_code = exit_code; [all...] |
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
gjslint.py | 249 exit_code = 0 253 exit_code += 1 257 exit_code += 2 259 if exit_code: 287 sys.exit(exit_code)
|
/external/chromium_org/content/shell/app/ |
shell_main_delegate.cc | 109 bool ShellMainDelegate::BasicStartupComplete(int* exit_code) { 126 if (exit_code) 127 *exit_code = 1; 183 if (exit_code) 184 *exit_code = 1;
|
/external/chromium_org/remoting/host/ |
host_main.cc | 123 DWORD exit_code = GetLastError(); local 125 return exit_code; 241 int exit_code = main_routine(); local 242 if (exit_code == kUsageExitCode) { 248 return exit_code;
|
server_log_entry.cc | 91 HostStatusSender::HostStatus host_status, HostExitCodes exit_code) { 97 entry->Set(kExitCodeName, ExitCodeToString(exit_code));
|
/external/chromium_org/third_party/closure_linter/closure_linter/ |
gjslint.py | 249 exit_code = 0 253 exit_code += 1 257 exit_code += 2 259 if exit_code: 287 sys.exit(exit_code)
|
/external/chromium_org/chrome/installer/test/ |
alternate_version_generator.cc | 211 int* exit_code) { 218 if (exit_code) { 220 reinterpret_cast<DWORD*>(exit_code))) { 225 DCHECK_NE(*exit_code, STILL_ACTIVE); 498 int exit_code; local 499 if (!RunProcessAndWait(NULL, command_line, &exit_code)) 501 if (exit_code != 0) { 503 << " exited with code " << exit_code 579 int exit_code; local 580 if (!RunProcessAndWait(NULL, command_line, &exit_code)) 583 LOG(DFATAL) << &kExpandExe[0] << " exited with code " << exit_code; local 634 LOG(DFATAL) << &kMakeCab[0] << " exited with code " << exit_code; local [all...] |
/external/chromium/base/ |
process_util_posix.cc | 222 // entry structure. Ignores specified exit_code; posix can't force that. 224 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) { 696 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) { 701 if (exit_code) 702 *exit_code = 0; 706 if (exit_code) 707 *exit_code = 0; 711 if (exit_code) 712 *exit_code = status; 737 bool WaitForExitCode(ProcessHandle handle, int* exit_code) { 979 int exit_code = EXIT_FAILURE; local [all...] |
process_util.h | 340 int exit_code, const ProcessFilter* filter); 346 BASE_API bool KillProcess(ProcessHandle process, int exit_code, bool wait); 355 BASE_API bool KillProcessById(ProcessId process_id, int exit_code, bool wait); 359 // circumstances of the child process' death. |exit_code| is set to 361 // GetExitCodeProcess() on Windows. |exit_code| may be NULL if the 367 int* exit_code); 370 // signaled then puts the exit code in |exit_code|; otherwise it's considered 371 // a failure. On Windows |exit_code| is always filled. Returns true on success, 373 BASE_API bool WaitForExitCode(ProcessHandle handle, int* exit_code); 376 // then puts the exit code in |exit_code|, and returns true [all...] |
/external/chromium_org/chrome/installer/mini_installer/ |
mini_installer.cc | 273 int* exit_code) { 287 } else if (exit_code) { 289 reinterpret_cast<DWORD*>(exit_code))) { 426 int exit_code = 0; local 428 (!RunProcessAndWait(NULL, cmd_line.get(), &exit_code) || 429 exit_code != ERROR_SUCCESS)) { 488 const wchar_t* setup_path, int* exit_code) { 516 return RunProcessAndWait(NULL, cmd_line.get(), exit_code); 713 // |exit_code|. 715 int* exit_code) { 771 int exit_code = 101; local [all...] |
/external/chromium/chrome/browser/ |
unload_uitest.cc | 293 int exit_code = -1; local 295 TestTimeouts::action_max_timeout_ms(), &exit_code)); 296 EXPECT_EQ(0, exit_code); // Expect a clean shutown. 317 int exit_code = -1; local 319 TestTimeouts::action_max_timeout_ms(), &exit_code)); 320 EXPECT_EQ(0, exit_code); // Expect a clean shutdown. 343 int exit_code = -1; local 345 TestTimeouts::action_max_timeout_ms(), &exit_code)); 346 EXPECT_EQ(0, exit_code); // Expect a clean shutdown.
|
/external/chromium_org/tools/gn/ |
function_exec_script.cc | 49 int* exit_code) { 137 *exit_code = static_cast<int>(dw_exit_code); 146 int* exit_code) { 147 *exit_code = EXIT_FAILURE; 225 return base::WaitForExitCode(pid, exit_code); 365 int exit_code = 0; local 368 &output, &stderr_output, &exit_code)) { 382 if (exit_code != 0) { 385 "\nReturned " + base::IntToString(exit_code);
|
/external/chromium_org/v8/tools/ |
run-deopt-fuzzer.py | 287 exit_code = 0 316 exit_code = exit_code or code 317 return exit_code 405 exit_code = runner.Run(options.j) 407 return exit_code 458 exit_code = runner.Run(options.j) 460 return exit_code 465 return exit_code
|
/external/chromium_org/base/process/ |
launch_posix.cc | 484 // in |*exit_code|, which should be checked to determine if the application 492 int* exit_code) { 495 // exit_code must be supplied so calling function can determine success. 496 DCHECK(exit_code); 497 *exit_code = EXIT_FAILURE; 589 bool success = WaitForExitCode(pid, exit_code); 608 int exit_code; local 611 &exit_code); 612 return result == EXECUTE_SUCCESS && exit_code == EXIT_SUCCESS; 621 int exit_code; local [all...] |
/external/chromium_org/chrome/browser/first_run/ |
upgrade_util_win.cc | 61 DWORD exit_code; local 62 ::GetExitCodeProcess(handle, &exit_code); 64 if (exit_code == installer::RENAME_SUCCESSFUL) 260 DWORD exit_code; local 261 ::GetExitCodeProcess(handle, &exit_code); 262 if (exit_code == installer::RENAME_SUCCESSFUL)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
rebaselineserver.py | 117 exit_code = scm.add(destination_path, return_exit_code=True) 118 if exit_code: 120 (destination_file, exit_code)) 153 exit_code = test_config.scm.add(destination_path, return_exit_code=True) 154 if exit_code: 156 (file_name, exit_code))
|
/external/chromium_org/chrome/browser/ |
shell_integration_linux.cc | 52 // cleanly, in which case |exit_code| returns the utility's exit code. 53 bool LaunchXdgUtility(const std::vector<std::string>& argv, int* exit_code) { 60 *exit_code = EXIT_FAILURE; 76 return base::WaitForExitCode(handle, exit_code); 124 int exit_code; local 125 if (!LaunchXdgUtility(argv, &exit_code) || exit_code) { 225 int exit_code; local 226 LaunchXdgUtility(argv, &exit_code); 227 return exit_code == 0 248 int exit_code; local [all...] |
/external/chromium/chrome/browser/importer/ |
profile_import_process_host.cc | 132 void ProfileImportProcessHost::OnProcessCrashed(int exit_code) { 138 exit_code));
|
/external/chromium_org/build/android/ |
generate_emma_html.py | 77 exit_code = cmd_helper.RunCmd( 87 return exit_code
|
/external/chromium_org/chrome/installer/setup/ |
uninstall.h | 43 // if successful, otherwise false. The error code is set in |exit_code|. 50 InstallStatus* exit_code);
|
/external/chromium_org/content/public/app/ |
content_main_delegate.h | 28 // if the process should exit afterwards, and if so, |exit_code| should be 31 virtual bool BasicStartupComplete(int* exit_code);
|