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

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cmd_line.py 19 def exit_code(self, *args): member in class:CmdLineTest
23 self.assertNotEqual(self.exit_code('.'), 0)
24 self.assertNotEqual(self.exit_code('< .'), 0)
54 self.assertNotEqual(self.exit_code('-m'), 0)
57 self.exit_code('-m', 'fnord43520xyz'),
62 self.exit_code('-m', 'runpy', 'fnord43520xyz'),
66 self.exit_code('-m', 'timeit', '-n', '1'),
83 self.assertNotEqual(self.exit_code('-c'), 0)
86 self.exit_code('-c', 'raise Exception'),
90 self.exit_code('-c', 'pass')
    [all...]
  /external/chromium/chrome/browser/first_run/
upgrade_util_win.cc 50 DWORD exit_code; local
51 ::GetExitCodeProcess(handle, &exit_code);
53 if (exit_code == installer::RENAME_SUCCESSFUL)
101 DWORD exit_code; local
102 ::GetExitCodeProcess(handle, &exit_code);
104 if (exit_code == installer::RENAME_SUCCESSFUL)
  /external/chromium_org/base/win/
scoped_process_information_unittest.cc 134 int exit_code = 0; local
136 &exit_code));
137 ASSERT_EQ(7, exit_code);
139 exit_code = 0;
141 &exit_code));
142 ASSERT_EQ(7, exit_code);
  /external/chromium_org/build/android/
bb_run_sharded_steps.py 80 output, exit_code = pexpect.run(
84 exit_code = exit_code or 0
86 exit_msg = '%s %s' % (exit_code,
91 exit_code = 0
94 'exit_code': exit_code,
136 print('%s : exit_code=%d in %d secs at %s' %
137 (result['name'], result['exit_code'], result['total_time'],
142 # No exit_code for the sharding step: the individual _PrintResults ste
    [all...]
  /external/chromium_org/chrome_frame/
update_launcher.cc 26 DWORD exit_code = 0; local
28 ::GetExitCodeProcess(handle, &exit_code)) ?
29 exit_code : kLaunchFailureExitCode;
test_utils.cc 92 int exit_code = -1; local
116 process_handle, &exit_code,
124 if (exit_code != 0) {
127 << "DLL registration failed (exit code: 0x" << std::hex << exit_code
133 << "DLL unregistration failed (exit code: 0x" << std::hex << exit_code
186 HRESULT exit_code = 0; local
189 exit_code = HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
197 exit_code = HRESULT_FROM_WIN32(::GetLastError());
204 exit_code = HRESULT_FROM_WIN32(::GetLastError());
206 exit_code = register_func()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
main.py 68 exit_code = 0
75 exit_code = e.exit_code
76 return exit_code
101 exit_code = 0
108 exit_code = e.exit_code
110 return exit_code
120 exit_code = 0
125 exit_code = e.exit_cod
    [all...]
  /system/media/camera/docs/
metadata-parser-sanity-check 37 exit_code=$?
40 if [[ $exit_code -ne 0 ]]
47 exit $exit_code
  /external/chromium_org/chrome/app/android/
chrome_main_delegate_android.cc 42 bool ChromeMainDelegateAndroid::BasicStartupComplete(int* exit_code) {
44 return ChromeMainDelegate::BasicStartupComplete(exit_code);
  /external/chromium_org/content/public/browser/
browser_child_process_host_delegate.h 27 // Called if the process crashed. |exit_code| is the status returned when the
30 virtual void OnProcessCrashed(int exit_code) {}
browser_child_process_host.h 60 // Returns the termination status of a child. |exit_code| is the
63 // GetExitCodeProcess()). |exit_code| may be NULL.
64 virtual base::TerminationStatus GetTerminationStatus(int* exit_code) = 0;
  /external/chromium_org/build/android/pylib/
forwarder.py 97 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
104 if exit_code != 0:
106 instance._host_forwarder_path, exit_code, '\n'.join(output)))
211 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
213 if exit_code != 0:
215 instance._host_forwarder_path, exit_code, '\n'.join(output)))
274 (exit_code, output) = adb.GetShellCommandStatusAndOutput(
277 if exit_code != 0:
288 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
290 if exit_code != 0
    [all...]
  /external/chromium/testing/gmock/test/
gmock_test_utils.py 76 def GetExitStatus(exit_code):
80 exit_code: the result value of os.system(command).
86 return exit_code
90 if os.WIFEXITED(exit_code):
91 return os.WEXITSTATUS(exit_code)
  /external/chromium_org/base/process/
kill_posix.cc 88 int* exit_code) {
94 if (exit_code)
95 *exit_code = 0;
99 if (exit_code)
100 *exit_code = 0;
104 if (exit_code)
105 *exit_code = status;
133 // entry structure. Ignores specified exit_code; posix can't force that.
135 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) {
194 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) {
    [all...]
  /external/chromium_org/v8/tools/
fuzz-harness.sh 86 exit_code=$(cat w* | grep " looking good" -c)
87 exit_code=$((100-exit_code))
91 echo "Total failures: $exit_code"
92 exit $exit_code
  /external/protobuf/gtest/test/
gtest_help_test.py 84 return child.exit_code, child.output
94 exit_code, output = RunWithFlag(flag)
95 self.assertEquals(0, exit_code)
120 exit_code, output = RunWithFlag(None)
121 self.assert_(exit_code != 0)
  /external/chromium_org/chrome/installer/setup/
setup_util.cc 41 // waits indefinitely for it to exit and populates |exit_code| as expected. On
42 // the off chance that waiting itself fails, |exit_code| is set to
46 int* exit_code) {
47 DCHECK(exit_code);
77 if (!base::WaitForExitCode(handle, exit_code)) {
79 *exit_code = WAIT_FOR_EXISTING_FAILED;
81 VLOG(1) << "Existing installer returned exit code " << *exit_code;
109 const int exit_code = (patch_status != courgette::C_OK) ? local
112 LOG_IF(ERROR, exit_code)
115 << ". err=" << exit_code;
131 const int exit_code = patch_status != OK ? local
301 int exit_code = 0; local
    [all...]
  /external/chromium_org/chrome/browser/component_updater/test/
component_patcher_unittest.cc 46 int exit_code; local
48 exit_code = courgette::ApplyEnsemblePatch(input_file.value().c_str(),
51 if (exit_code == courgette::C_OK)
53 *error = exit_code + kCourgetteErrorOffset;
55 exit_code = courgette::ApplyBinaryPatch(input_file,
58 if (exit_code == courgette::OK)
60 *error = exit_code + kBsdiffErrorOffset;
  /external/chromium_org/content/shell/
shell_browser_main.cc 131 int exit_code = main_runner->Initialize(parameters); local
132 DCHECK_LT(exit_code, 0)
135 if (exit_code >= 0)
136 return exit_code;
203 exit_code = 0;
208 exit_code = main_runner->Run();
213 return exit_code;
  /external/chromium_org/v8/tools/testrunner/local/
commands.py 92 exit_code = None
95 while exit_code is None:
99 exit_code = process.wait()
102 exit_code = process.poll()
107 return (exit_code, timed_out)
138 (exit_code, timed_out) = RunProcess(
153 return output.Output(exit_code, timed_out, out, errors)
  /external/chromium_org/chrome/browser/nacl_host/test/
gdb_debug_stub_browsertest.cc 62 int exit_code; local
63 base::WaitForExitCode(test_script, &exit_code);
64 EXPECT_EQ(0, exit_code);
  /external/chromium_org/content/browser/
child_process_launcher.h 61 // |exit_code| is the exit code of the process if it exited (e.g. status from
62 // waitpid if on posix, from GetExitCodeProcess on Windows). |exit_code| may
65 int* exit_code);
  /external/chromium_org/content/browser/zygote_host/
zygote_host_impl_linux.h 38 // the process. |exit_code| is set to the exit code of the child
39 // process. (|exit_code| may be NULL.)
46 int* exit_code);
  /external/chromium_org/sandbox/win/tests/integration_tests/
integration_tests_test.cc 175 DWORD exit_code; local
176 ASSERT_TRUE(::GetExitCodeProcess(runner.process(), &exit_code));
177 ASSERT_EQ(STILL_ACTIVE, exit_code);
199 DWORD exit_code; local
202 ASSERT_TRUE(::GetExitCodeProcess(runner2.process(), &exit_code));
203 ASSERT_EQ(STILL_ACTIVE, exit_code);
225 DWORD exit_code; local
228 ASSERT_TRUE(::GetExitCodeProcess(runner2.process(), &exit_code));
229 ASSERT_EQ(STILL_ACTIVE, exit_code);
253 DWORD exit_code; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
sample_profiler.py 34 exit_code = self._proc.wait()
36 if exit_code:
39 exit_code, self._GetStdOut()))

Completed in 1174 milliseconds

12 3 4 5 6 7 8 91011>>