HomeSort by relevance Sort by last modified time
    Searched full:exit_code (Results 101 - 125 of 393) sorted by null

1 2 3 45 6 7 8 91011>>

  /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/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/chrome_frame/ready_mode/internal/
registry_ready_mode_state.cc 81 DWORD exit_code = 0; local
82 if (!::GetExitCodeProcess(handle, &exit_code)) {
89 if (exit_code != 0 && exit_code != installer::UNINSTALL_REQUIRES_REBOOT) {
90 DLOG(ERROR) << "Process failed with exit code " << exit_code << ".";
  /external/chromium_org/content/shell/app/
shell_main_delegate.cc 93 bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
110 if (exit_code)
111 *exit_code = 1;
163 if (exit_code)
164 *exit_code = 1;
  /external/chromium_org/remoting/host/
host_main.cc 121 DWORD exit_code = GetLastError(); local
123 return exit_code;
260 int exit_code = main_routine(); local
261 if (exit_code == kUsageExitCode) {
267 return exit_code;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm.py 43 def __init__(self, script_args, exit_code, output, cwd):
44 ScriptError.__init__(self, script_args=script_args, exit_code=exit_code, output=output, cwd=cwd)
50 raise CheckoutNeedsUpdate(script_args=error.script_args, exit_code=error.exit_code, output=error.output, cwd=error.cwd)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_port_testcase.py 155 port._executive = MockExecutive2(exit_code=0)
159 port._executive = MockExecutive2(exit_code=2)
169 port._executive = MockExecutive2(exit_code=2)
207 port._executive = MockExecutive2(exit_code=0)
211 port._executive = MockExecutive2(exit_code=1,
  /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);
499 int exit_code; local
500 if (!RunProcessAndWait(NULL, command_line, &exit_code))
502 if (exit_code != 0) {
504 << " exited with code " << exit_code
580 int exit_code; local
581 if (!RunProcessAndWait(NULL, command_line, &exit_code))
584 LOG(DFATAL) << &kExpandExe[0] << " exited with code " << exit_code; local
635 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) {
762 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/v8/tools/
run-deopt-fuzzer.py 287 exit_code = 0
316 exit_code = exit_code or code
317 return exit_code
403 exit_code = runner.Run(options.j)
405 return exit_code
456 exit_code = runner.Run(options.j)
458 return exit_code
463 return exit_code
  /external/chromium_org/base/process/
launch_posix.cc 606 // in |*exit_code|, which should be checked to determine if the application
614 int* exit_code) {
617 // exit_code must be supplied so calling function can determine success.
618 DCHECK(exit_code);
619 *exit_code = EXIT_FAILURE;
711 bool success = WaitForExitCode(pid, exit_code);
730 int exit_code; local
733 &exit_code);
734 return result == EXECUTE_SUCCESS && exit_code == EXIT_SUCCESS;
743 int exit_code; local
    [all...]
  /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 51 // cleanly, in which case |exit_code| returns the utility's exit code.
52 bool LaunchXdgUtility(const std::vector<std::string>& argv, int* exit_code) {
59 *exit_code = EXIT_FAILURE;
75 return base::WaitForExitCode(handle, exit_code);
123 int exit_code; local
124 if (!LaunchXdgUtility(argv, &exit_code) || exit_code) {
224 int exit_code; local
225 LaunchXdgUtility(argv, &exit_code);
226 return exit_code == 0
247 int exit_code; local
    [all...]
  /external/chromium_org/build/android/
test_runner.py 425 exit_code = 0
447 if test_exit_code and exit_code != constants.ERROR_EXIT_CODE:
448 exit_code = test_exit_code
460 return exit_code
468 exit_code = 0
473 test_results, exit_code = test_dispatcher.RunTests(
500 if test_exit_code and exit_code != constants.ERROR_EXIT_CODE:
501 exit_code = test_exit_code
511 return exit_code
520 results, exit_code = test_dispatcher.RunTests
    [all...]
  /external/chromium/chrome/browser/importer/
profile_import_process_host.cc 132 void ProfileImportProcessHost::OnProcessCrashed(int exit_code) {
138 exit_code));
  /external/chromium_org/base/test/
test_launcher.cc 397 int exit_code = 0; local
399 &exit_code,
402 exit_code = -1; // Set a non-zero exit code to signal a failure.
409 if (exit_code != 0) {
420 return exit_code;
436 int exit_code = 0; local
439 exit_code = 1;
448 return exit_code;
  /external/chromium_org/build/android/pylib/
cmd_helper.py 87 exit_code = _Call(args, cwd=cwd, stdout=tmpout, stderr=tmperr, shell=shell)
99 return (exit_code, stdout)
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_desktop_impl.cc 52 int exit_code; local
53 return base::GetTerminationStatus(process_id, &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);

Completed in 1571 milliseconds

1 2 3 45 6 7 8 91011>>