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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/base/win/
scoped_process_information_unittest.cc 138 int exit_code = 0; local
140 &exit_code));
141 ASSERT_EQ(7, exit_code);
143 exit_code = 0;
145 &exit_code));
146 ASSERT_EQ(7, exit_code);
event_trace_consumer_unittest.cc 170 DWORD exit_code = 0;
171 if (::GetExitCodeThread(consumer_thread_, &exit_code))
172 return exit_code;
185 DWORD exit_code = 0;
186 if (::GetExitCodeThread(consumer_thread_, &exit_code))
187 return exit_code;
  /external/chromium_org/chrome/browser/first_run/
upgrade_util_win.cc 62 DWORD exit_code; local
63 ::GetExitCodeProcess(handle, &exit_code);
65 if (exit_code == installer::RENAME_SUCCESSFUL)
243 DWORD exit_code; local
244 ::GetExitCodeProcess(handle, &exit_code);
245 if (exit_code == installer::RENAME_SUCCESSFUL)
first_run_internal_win.cc 70 int exit_code = 0; local
72 !base::WaitForExitCode(ph, &exit_code)) {
76 *ret_code = exit_code;
  /external/chromium_org/sandbox/win/tests/common/
controller.cc 55 DWORD exit_code = 0; local
56 if (::GetExitCodeProcess(process, &exit_code))
57 return exit_code == STILL_ACTIVE;
256 DWORD exit_code = SBOX_TEST_LAST_RESULT; local
257 if (!::GetExitCodeProcess(target.hProcess, &exit_code)) {
266 return exit_code;
  /external/chromium_org/build/android/
test_runner.py 504 exit_code = 0
524 if test_exit_code and exit_code != constants.ERROR_EXIT_CODE:
525 exit_code = test_exit_code
536 return exit_code
543 results, exit_code = test_dispatcher.RunTests(
552 return exit_code
564 exit_code = 0
569 test_results, exit_code = test_dispatcher.RunTests(
588 if test_exit_code and exit_code != constants.ERROR_EXIT_CODE:
589 exit_code = test_exit_cod
    [all...]
install_emulator_deps.py 70 exit_code, stdout = cmd_helper.GetCmdStatusAndOutput(
72 if exit_code != 0:
201 exit_code, stdout = cmd_helper.GetCmdStatusAndOutput(
203 if exit_code != 0:
204 raise Exception('\'android list sdk\' command return %d' % exit_code)
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl_kde.cc 143 void SelectSingleFileHelper(const std::string& output, int exit_code,
148 int exit_code, void* params);
151 int exit_code, void* params);
154 int exit_code, void* params);
302 int exit_code; local
304 base::GetAppOutputWithExitCode(command_line, &output, &exit_code);
312 base::Bind(params.callback, this, params.parent, output, exit_code,
447 int exit_code, void* params, bool allow_folder) {
449 if (exit_code != 0 || output.empty()) {
467 XID parent, const std::string& output, int exit_code, void* params)
    [all...]
  /external/chromium_org/chrome/installer/test/
alternate_version_generator.cc 215 int* exit_code) {
222 if (exit_code) {
224 reinterpret_cast<DWORD*>(exit_code))) {
229 DCHECK_NE(*exit_code, STILL_ACTIVE);
497 int exit_code; local
498 if (!RunProcessAndWait(NULL, command_line, &exit_code))
500 if (exit_code != 0) {
502 << " exited with code " << exit_code
578 int exit_code; local
579 if (!RunProcessAndWait(NULL, command_line, &exit_code))
582 LOG(DFATAL) << &kExpandExe[0] << " exited with code " << exit_code; local
633 LOG(DFATAL) << &kMakeCab[0] << " exited with code " << exit_code; local
    [all...]
  /external/chromium_org/chrome/common/
service_process_util_unittest.cc 100 int exit_code = 0; local
101 ASSERT_TRUE(base::WaitForExitCode(handle, &exit_code));
102 ASSERT_EQ(exit_code, 0);
198 int exit_code = 0; local
200 &exit_code, TestTimeouts::action_max_timeout()));
202 ASSERT_EQ(exit_code, 0);
352 int exit_code = -1; local
353 ASSERT_TRUE(base::GetAppOutputWithExitCode(cl, &output, &exit_code)
354 && exit_code == 0)
355 << " exit_code:" << exit_code << " " << output
    [all...]
  /external/chromium_org/content/zygote/
zygote_linux.cc 262 int exit_code; local
264 GetTerminationStatus(child, true /* known_dead */, &status, &exit_code);
273 int* exit_code) {
286 child, known_dead, status, exit_code)) {
292 *status = base::GetKnownDeadTerminationStatus(child, exit_code);
296 *status = base::GetTerminationStatus(child, exit_code);
321 int exit_code; local
324 GetTerminationStatus(child_requested, known_dead, &status, &exit_code);
330 exit_code = RESULT_CODE_NORMAL_EXIT;
335 write_pickle.WriteInt(exit_code);
    [all...]
  /external/chromium_org/content/browser/
browser_child_process_host_impl.cc 225 bool known_dead, int* exit_code) {
228 return base::GetTerminationStatus(data_.handle, exit_code);
230 exit_code);
275 int exit_code; local
277 true /* known_dead */, &exit_code);
281 delegate_->OnProcessCrashed(exit_code);
290 delegate_->OnProcessCrashed(exit_code);
  /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 111 bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
128 if (exit_code)
129 *exit_code = 1;
182 if (exit_code)
183 *exit_code = 1;
  /external/chromium_org/testing/gtest/test/
gtest_test_utils.py 187 def GetExitStatus(exit_code):
191 exit_code: the result value of os.system(command).
197 return exit_code
201 if os.WIFEXITED(exit_code):
202 return os.WEXITSTATUS(exit_code)
227 exit_code The code with which the child process exited.
303 self.exit_code = self._return_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/gtest/test/
gtest_test_utils.py 187 def GetExitStatus(exit_code):
191 exit_code: the result value of os.system(command).
197 return exit_code
201 if os.WIFEXITED(exit_code):
202 return os.WEXITSTATUS(exit_code)
227 exit_code The code with which the child process exited.
303 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/chrome/installer/util/
product.cc 76 int32* exit_code) const {
103 if (exit_code)
104 *exit_code = ret;
  /external/chromium_org/content/browser/renderer_host/
render_process_host_browsertest.cc 42 int exit_code) OVERRIDE {
121 int exit_code) OVERRIDE {
146 int exit_code) OVERRIDE {
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
tcpdump_profiler.py 75 exit_code = self._proc.wait()
77 if exit_code:
80 (exit_code, self._GetStdOut()))
  /build/tools/releasetools/
build_image.py 145 exit_code = RunCommand(inflate_command)
146 if exit_code != 0:
266 exit_code = RunCommand(build_command)
267 if exit_code != 0:
282 exit_code = RunCommand(e2fsck_command)
286 return exit_code == 0
  /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))
  /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...]
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_credentials_getter_win.cc 29 virtual void OnProcessCrashed(int exit_code) OVERRIDE;
66 void CredentialsGetterHostClient::OnProcessCrashed(int exit_code) {

Completed in 594 milliseconds

1 2 3 45 6 7 8 91011>>