HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 176 - 200 of 353) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/base/test/launcher/
test_launcher.h 116 int exit_code,
  /external/chromium_org/build/android/pylib/base/
test_dispatcher.py 252 exit_code = 0
275 exit_code = constants.WARNING_EXIT_CODE
287 exit_code = constants.ERROR_EXIT_CODE
288 return (run_results, exit_code)
  /external/chromium_org/chrome/browser/chromeos/file_manager/
zip_file_creator.cc 66 void ZipFileCreator::OnProcessCrashed(int exit_code) {
  /external/chromium_org/chrome/browser/importer/
external_process_importer_client.h 59 virtual void OnProcessCrashed(int exit_code) OVERRIDE;
  /external/chromium_org/chrome/installer/util/
product.h 90 // The status of Chrome at the return of the function is given by exit_code.
95 int32* exit_code) const;
  /external/chromium_org/components/nacl/loader/
nacl_helper_linux.cc 214 int exit_code; local
217 status = base::GetKnownDeadTerminationStatus(child_to_wait, &exit_code);
219 status = base::GetTerminationStatus(child_to_wait, &exit_code);
221 output_pickle->WriteInt(exit_code);
  /external/chromium_org/content/browser/
browser_child_process_host_impl.h 55 bool known_dead, int* exit_code) OVERRIDE;
  /external/chromium_org/content/zygote/
zygote_linux.h 69 // status in |status| and the exit code in |exit_code|.
72 int* exit_code);
  /external/chromium_org/sandbox/linux/suid/
sandbox.c 202 int exit_code = -1; local
219 exit_code = reaped_child_info.si_status;
222 exit_code = 0;
225 _exit(exit_code);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
main.py 158 exit_code = self.executive.call(prefix_cmd + ['run', __file__] + argv, cwd=script_dir, env=env)
159 if not exit_code:
160 exit_code = self.executive.call(prefix_cmd + ['report', '--omit', 'webkitpy/thirdparty/*,/usr/*,/Library/*'], cwd=script_dir, env=env)
161 return (exit_code == 0)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
subprocess.cc 235 DWORD exit_code; local
236 if (!GetExitCodeProcess(child_handle_, &exit_code)) {
244 if (exit_code != 0) {
246 "Plugin failed with status code $0.", exit_code);
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
perf_profiler.py 108 exit_code = self._proc.wait()
110 if exit_code == 128:
116 elif exit_code not in (0, -2):
118 'perf failed with exit code %d. Output:\n%s' % (exit_code,
strace_profiler.py 180 exit_code = self._proc.wait()
182 if exit_code:
184 exit_code, self._GetStdOut()))
  /external/chromium_org/tools/
update_reference_build.py 131 exit_code = p.returncode
135 return (exit_code, stdout)
221 exit_code = BuildUpdater._GetCmdStatusAndOutput(
223 return not exit_code
  /external/chromium_org/v8/tools/testrunner/local/
progress.py 98 print "exit code: %d" % failed.output.exit_code
181 print "exit code: %d" % test.output.exit_code
277 fail_text += "exit code: %d\n--- CRASHED ---" % test.output.exit_code
330 "exit_code": test.output.exit_code,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 258 int exit_code = 0; local
261 exit_code = 3;
266 exit_code = 0;
271 return exit_code;
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 232 DWORD exit_code; local
233 if (!GetExitCodeProcess(child_handle_, &exit_code)) {
241 if (exit_code != 0) {
243 "Plugin failed with status code $0.", exit_code);
  /external/chromium_org/build/android/pylib/device/
adb_wrapper.py 52 exit_code, output = cmd_helper.GetCmdStatusAndOutput(cmd)
53 if exit_code != 0:
56 (exit_code, output))
  /external/chromium_org/chromeos/ime/
ime_keyboard_x11.cc 316 int exit_code; local
318 switch (base::GetTerminationStatus(handle, &exit_code)) {
335 DVLOG(1) << "PollUntilChildFinish: Abnormal exit code: " << exit_code;
  /external/chromium_org/net/disk_cache/blockfile/
stress_cache.cc 68 int exit_code; local
69 if (!base::WaitForExitCode(handle, &exit_code)) {
73 return exit_code;
  /external/chromium_org/sandbox/win/src/
target_process.cc 80 DWORD exit_code = 0; local
92 &exit_code) || (STILL_ACTIVE == exit_code)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 175 def __init__(self, output='', exit_code=0, exception=None, run_command_fn=None, stderr=''):
178 self._exit_code = exit_code
202 script_error = ScriptError(script_args=args, exit_code=self._exit_code, output=self._output)
  /external/chromium_org/tools/win/link_limiter/
limiter.cc 63 DWORD exit_code; local
92 GetExitCodeProcess(process_info.hProcess, &exit_code);
94 return exit_code;
  /external/chromium_org/tools/win/split_link/
split_link.cc 112 DWORD exit_code; local
152 GetExitCodeProcess(process_info.hProcess, &exit_code);
154 exit(exit_code);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cmd_line_script.py 73 exit_code, data = run_python(*run_args)
77 self.assertEqual(exit_code, 0)
93 exit_code, data = run_python(*run_args)

Completed in 3145 milliseconds

1 2 3 4 5 6 78 91011>>