HomeSort by relevance Sort by last modified time
    Searched refs:exitCode (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /external/caliper/caliper/src/main/java/com/google/caliper/util/
DisplayUsageException.java 33 @Override public int exitCode() {
InvalidCommandException.java 51 public int exitCode() {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ExitTest.java 69 int exitCode = 0;
76 exitCode = debuggeeWrapper.process.exitValue();
88 logWriter.println("exitCode = " + exitCode);
89 assertEquals("Invalid exit code,", 99, exitCode);
  /external/lzma/CPP/Windows/
Thread.h 30 bool Terminate(DWORD exitCode) { return BOOLToBool(::TerminateThread(thread, exitCode)); }
  /external/lzma/CPP/7zip/UI/Console/
MainAr.cpp 12 #include "../Common/ExitCode.h"
87 catch(NExitCode::EEnum &exitCode)
89 (*g_StdStream) << kInternalExceptionMessage << exitCode << endl;
90 return (exitCode);
  /external/libcxx/utils/sym_check/sym_check/
util.py 19 exitCode = p.wait()
20 if exitCode == -signal.SIGINT:
22 return out, err, exitCode
29 out, err, exitCode = execute_command(cmd, input_str=input_str)
30 if exitCode != 0:
32 report += "Exit Code: %d\n" % exitCode
39 return out, err, exitCode
  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 83 DWORD len, exitCode;
195 GetExitCodeProcess(pi.hProcess, &exitCode)
207 dbg_printf("exiting with exitCode %d", exitCode);
209 return exitCode;
  /external/jsoncpp/src/jsontestrunner/
main.cpp 231 int exitCode = parseCommandLine(argc, argv, features, path, parseOnly);
232 if (exitCode != 0) {
233 return exitCode;
255 exitCode = parseAndSaveValueTree(
257 if (exitCode == 0 && !parseOnly) {
259 exitCode = rewriteValueTree(rewritePath, root, rewrite);
260 if (exitCode == 0) {
262 exitCode = parseAndSaveValueTree(rewrite,
273 exitCode = 1;
276 return exitCode;
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/vinn/
d8_bootstrap.js 41 * Our solution is to monkeypatch quit() s.t. quit(1) becomes exitcode=2.
46 global.quit = function(exitCode) {
48 if (exitCode < 0) {
49 exitCode = (exitCode % 256) + 256;
51 exitCode = exitCode % 256;
55 if (exitCode == 255)
57 if (exitCode === 0)
59 realQuit(exitCode + 1)
    [all...]
  /external/llvm/utils/lit/lit/
TestRunner.py 257 exitCode = None
277 if exitCode is None:
278 exitCode = res
280 exitCode = min(exitCode, res)
282 exitCode = max(exitCode, res)
284 exitCode = res
294 exitCode = not exitCode
    [all...]
util.py 168 exitCode = p.wait()
171 if exitCode == -signal.SIGINT:
178 return out, err, exitCode
  /external/libcxx/test/libcxx/android/
executors.py 20 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
22 if exitCode != 0:
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/
executors.py 20 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
22 if exitCode != 0:
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.2/
ant-launcher-1.8.2.jar 
  /external/clang/utils/
CmpDriver 113 self.exitCode = res
205 if infoA.exitCode != infoB.exitCode:
207 print 'A: ',infoA.exitCode
208 print 'B: ',infoB.exitCode
  /sdk/find_java/src/source/
utils.cpp 123 DWORD exitCode;
124 if (GetExitCodeProcess(pinfo.hProcess, &exitCode)) {
126 result = exitCode;
  /external/deqp/framework/delibs/deutil/
deProcess.c 52 int exitCode;
185 return process->exitCode;
420 process->exitCode = WEXITSTATUS(status);
523 int exitCode;
625 return process->exitCode;
737 int exitCode;
738 BOOL result = GetExitCodeProcess(process->procInfo.hProcess, (LPDWORD)&exitCode);
746 if (exitCode == STILL_ACTIVE)
751 process->exitCode = exitCode;
    [all...]
  /external/deqp/execserver/
xsProtocol.hpp 156 int exitCode;
159 ProcessFinishedMessage (int exitCode_) : Message(MESSAGETYPE_PROCESS_FINISHED), exitCode(exitCode_) {}
  /external/llvm/utils/lit/lit/formats/
base.py 104 out, err, exitCode = lit.util.executeCommand(cmd)
107 if not exitCode and not diags.strip():
googletest.py 112 out, err, exitCode = lit.util.executeCommand(
115 if exitCode:
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.7.0/
ant-launcher-1.7.0.jar 
  /sdk/find_java2/src/
utils.cpp 208 DWORD exitCode;
209 if (GetExitCodeProcess(pinfo.hProcess, &exitCode)) {
211 result = exitCode;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 34 * Exec java returns the exitCode, and stdOut and stdErr as strings
59 * Exec command returns the exitCode, and stdOut and stdErr as strings
81 int exitCode = proc.exitValue();
84 Integer.valueOf(exitCode),

Completed in 1287 milliseconds

1 2 3 4 5 6 7 8 9