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

1 2 3 4 5 6

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ExitTest.java 57 int exitCode = 0;
64 exitCode = debuggeeWrapper.process.exitValue();
76 logWriter.println("exitCode = " + exitCode);
77 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);
Main.cpp 24 #include "../Common/ExitCode.h"
525 int exitCode = NExitCode::kSuccess;
541 exitCode = NExitCode::kWarning;
591 exitCode = NExitCode::kWarning;
593 return exitCode;
  /external/jsoncpp/src/jsontestrunner/
main.cpp 245 int exitCode = parseCommandLine( argc, argv, features, path, parseOnly );
246 if ( exitCode != 0 )
248 return exitCode;
272 exitCode = parseAndSaveValueTree( input, actualPath, "input", root, features, parseOnly );
273 if ( exitCode == 0 && !parseOnly )
276 exitCode = rewriteValueTree( rewritePath, root, rewrite );
277 if ( exitCode == 0 )
280 exitCode = parseAndSaveValueTree( rewrite, rewriteActualPath,
288 exitCode = 1;
291 return exitCode;
    [all...]
  /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/libcxx/test/libcxx/android/
executors.py 20 temp_path, err, exitCode = self._execute_command_remote([cmd])
22 if exitCode != 0:
  /external/llvm/utils/lit/lit/
TestRunner.py 229 exitCode = None
249 if exitCode is None:
250 exitCode = res
252 exitCode = min(exitCode, res)
254 exitCode = max(exitCode, res)
256 exitCode = res
266 exitCode = not exitCode
    [all...]
util.py 168 exitCode = p.wait()
171 if exitCode == -signal.SIGINT:
178 return out, err, exitCode
  /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;
find_java_lib.cpp 541 DWORD exitCode;
542 if (GetExitCodeProcess(pinfo.hProcess, &exitCode)) {
544 result = exitCode == 0;
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
d8_bootstrap.js 36 * Our solution is to monkeypatch quit() s.t. quit(1) becomes exitcode=2.
41 global.quit = function(exitCode) {
43 if (exitCode < 0) {
44 exitCode = (exitCode % 256) + 256;
46 exitCode = exitCode % 256;
50 if (exitCode == 255)
52 if (exitCode === 0)
54 realQuit(exitCode + 1)
    [all...]
  /external/deqp/execserver/
xsProtocol.hpp 156 int exitCode;
159 ProcessFinishedMessage (int exitCode_) : Message(MESSAGETYPE_PROCESS_FINISHED), exitCode(exitCode_) {}
xsProtocol.cpp 243 exitCode = parser.get<int>();
250 writer.put(exitCode);
  /external/webrtc/src/system_wrappers/source/
thread_win.cc 135 DWORD exitCode = 0;
139 ret = TerminateThread(_thread, exitCode);
  /external/deqp/framework/delibs/deutil/
deProcess.c 52 int exitCode;
184 return process->exitCode;
417 process->exitCode = WEXITSTATUS(status);
520 int exitCode;
622 return process->exitCode;
734 int exitCode;
735 BOOL result = GetExitCodeProcess(process->procInfo.hProcess, (LPDWORD)&exitCode);
743 if (exitCode == STILL_ACTIVE)
748 process->exitCode = exitCode;
    [all...]
  /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 
  /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),
  /external/libcxx/test/libcxx/test/
executor.py 20 out, err, exitCode
164 temp_path, err, exitCode = self._execute_command_remote([cmd])
166 if exitCode != 0:

Completed in 1773 milliseconds

1 2 3 4 5 6