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

1 2

  /external/llvm/tools/llvm-ranlib/
llvm-ranlib.cpp 62 int exitCode = 0;
92 exitCode = 1;
95 exitCode = 2;
98 exitCode = 3;
100 return exitCode;
  /tools/motodev/src/plugins/preflighting/src/com/motorolamobility/preflighting/internal/
PreflightingApplication.java 56 Integer exitCode = validate(commandLine, System.out, System.err);
57 return exitCode;
62 Integer exitCode = IApplication.EXIT_OK;
123 exitCode = getExitCode(exitCode, validationResults);
143 exitCode = new Integer(1);
156 exitCode = new Integer(1);
163 exitCode = new Integer(1);
168 return exitCode;
174 * @param exitCode
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCThread.cpp 49 void* exitCode;
50 waitForThreadCompletion(m_threadID, &exitCode);
  /external/llvm/utils/lit/lit/
TestRunner.py 37 exitCode = p.wait()
40 if exitCode == -signal.SIGINT:
43 return out, err, exitCode
214 exitCode = None
225 exitCode = min(exitCode, res)
227 exitCode = max(exitCode, res)
229 exitCode = res
239 exitCode = not exitCod
    [all...]
TestFormats.py 92 out, err, exitCode = TestRunner.executeCommand(
95 if not exitCode:
209 out, err, exitCode = TestRunner.executeCommand(cmd)
212 if not exitCode and not diags.strip():
  /external/webkit/Tools/MiniBrowser/qt/
utils.cpp 67 void appQuit(int exitCode, const QString& msg)
70 if (exitCode > 0)
75 exit(exitCode);
  /external/webkit/Tools/QtTestBrowser/
utils.cpp 67 void appQuit(int exitCode, const QString& msg)
70 if (exitCode > 0)
75 exit(exitCode);
  /external/webkit/Tools/Scripts/
ensure-valid-python 60 my $exitCode = system("curl", "-o", $localPath, $remoteURL);
61 return exitStatus($exitCode) == 0;
85 my $exitCode = system("hdiutil", "detach", $mountPoint);
86 return exitStatus($exitCode) == 0;
  /external/clang/utils/
CmpDriver 108 self.exitCode = res
200 if infoA.exitCode != infoB.exitCode:
202 print 'A: ',infoA.exitCode
203 print 'B: ',infoB.exitCode
  /sdk/find_java/
utils.cpp 123 DWORD exitCode;
124 if (GetExitCodeProcess(pinfo.hProcess, &exitCode)) {
126 result = exitCode;
find_java_lib.cpp 516 DWORD exitCode;
517 if (GetExitCodeProcess(pinfo.hProcess, &exitCode)) {
519 result = exitCode == 0;
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/logic/
AndroidLogicUtils.java 180 int exitCode;
184 exitCode = p.exitValue();
191 exitCode = 0;
196 error("Emulator process is not running! Exit code:" + 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 
ant-junit.jar 
  /tools/motodev/src/plugins/android.linux.x86/src/com/motorola/studio/android/nativeos/linux/gtk/
GtkBridge.java 93 int exitCode = p.waitFor();
94 if (exitCode != 0)
97 + " finished with error code:" + exitCode);
  /tools/motodev/src/plugins/android.linux.x86_64/src/com/motorola/studio/android/nativeos/linux/gtk/
GtkBridge.java 93 int exitCode = p.waitFor();
94 if (exitCode != 0)
97 + " finished with error code:" + 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/llvm/tools/llvm-ar/
llvm-ar.cpp 699 int exitCode = 0;
760 exitCode = 1;
763 // a more serious error so we bump the exitCode and don't print the usage.
765 exitCode = 2;
769 exitCode = 3;
773 return exitCode;
  /tools/motodev/src/plugins/preflighting.ui/src/com/motorolamobility/preflighting/ui/handlers/
AnalyzeApkHandler.java 154 private int exitCode = EXIT_CODE_OK;
174 exitCode =
188 return exitCode;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 
org.sat4j.core_2.2.0.v20100429.jar 
  /dalvik/vm/jdwp/
JdwpHandler.cpp 356 u4 exitCode = get4BE(buf);
358 ALOGW("Debugger is telling the VM to exit with code=%d", exitCode);
360 dvmDbgExit(exitCode);
    [all...]

Completed in 813 milliseconds

1 2