/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | TestRunner.py | 33 exitCode = p.wait() 36 if exitCode == -signal.SIGINT: 39 return out, err, exitCode 210 exitCode = None 221 exitCode = min(exitCode, res) 223 exitCode = max(exitCode, res) 225 exitCode = res 235 exitCode = not exitCode 237 return exitCode 248 exitCode = executeShCmd(cmd, test.config, cwd, results) [all …]
|
D | 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/libcxx/utils/libcxx/ |
D | util.py | 166 def __init__(self, msg, out, err, exitCode): argument 170 assert isinstance(exitCode, int) 174 self.exitCode = exitCode 223 exitCode = p.wait() 237 exitCode=exitCode 241 if exitCode == -signal.SIGINT: 244 return out, err, exitCode 281 out, err, exitCode = executeCommand(cmd, *args, **kwargs) 282 if exitCode != 0: 283 report = makeReport(cmd, out, err, exitCode) [all …]
|
/external/libcxx/utils/ |
D | merge_archives.py | 58 exitCode = p.wait() 59 if exitCode == -signal.SIGINT: 61 return out, err, exitCode 68 out, err, exitCode = execute_command(cmd, cwd=cwd) 69 if exitCode != 0 or verbose: 71 if exitCode != 0: 72 report += "Exit Code: %d\n" % exitCode 77 if exitCode != 0: 80 if exitCode != 0: 81 exit_with_cleanups(exitCode)
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
D | TestRunner.py | 144 def __init__(self, command, stdout, stderr, exitCode, timeoutReached, argument 149 self.exitCode = exitCode 345 exitCode = 0 356 exitCode = 1 357 return ShellCommandResult(cmd, "", stderr.getvalue(), exitCode, False) 428 exitCode = 0 440 exitCode = 1 441 return exitCode 453 exitCode = 0 471 exitCode = 1 [all …]
|
D | util.py | 281 def __init__(self, msg, out, err, exitCode): argument 285 assert isinstance(exitCode, int) 289 self.exitCode = exitCode 341 exitCode = p.wait() 355 exitCode=exitCode 359 if exitCode == -signal.SIGINT: 362 return out, err, exitCode
|
/external/llvm/utils/lit/lit/ |
D | TestRunner.py | 116 def __init__(self, command, stdout, stderr, exitCode, timeoutReached, argument 121 self.exitCode = exitCode 376 exitCode = None 417 if exitCode is None: 418 exitCode = res 420 exitCode = min(exitCode, res) 422 exitCode = max(exitCode, res) 424 exitCode = res 434 exitCode = not exitCode 436 return exitCode [all …]
|
D | util.py | 162 def __init__(self, msg, out, err, exitCode): argument 166 assert isinstance(exitCode, int) 170 self.exitCode = exitCode 217 exitCode = p.wait() 231 exitCode=exitCode 235 if exitCode == -signal.SIGINT: 238 return out, err, exitCode
|
/external/jsoncpp/src/jsontestrunner/ |
D | main.cpp | 231 int exitCode = parseCommandLine(argc, argv, features, path, parseOnly); in main() local 232 if (exitCode != 0) { in main() 233 return exitCode; in main() 255 exitCode = parseAndSaveValueTree( in main() 257 if (exitCode == 0 && !parseOnly) { in main() 259 exitCode = rewriteValueTree(rewritePath, root, rewrite); in main() 260 if (exitCode == 0) { in main() 262 exitCode = parseAndSaveValueTree(rewrite, in main() 273 exitCode = 1; in main() 276 return exitCode; in main()
|
/external/vulkan-validation-layers/build-android/ |
D | test_APK.sh | 178 exitCode=-1; 192 exitCode=0 203 exitCode=1 211 exitCode=2 225 if [ $exitCode -eq -1 ] 263 if [ $exitCode -ne 0 ] 278 exit $exitCode
|
/external/swiftshader/third_party/LLVM/tools/llvm-ranlib/ |
D | llvm-ranlib.cpp | 62 int exitCode = 0; in main() local 92 exitCode = 1; in main() 95 exitCode = 2; in main() 98 exitCode = 3; in main() 100 return exitCode; in main()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | ExitTest.java | 69 int exitCode = 0; in testExit001() local 76 exitCode = debuggeeWrapper.process.exitValue(); in testExit001() 88 logWriter.println("exitCode = " + exitCode); in testExit001() 89 assertEquals("Invalid exit code,", 99, exitCode); in testExit001()
|
/external/clang/utils/ |
D | CmpDriver | 113 self.exitCode = res 205 if infoA.exitCode != infoB.exitCode: 207 print 'A: ',infoA.exitCode 208 print 'B: ',infoB.exitCode
|
/external/deqp/framework/delibs/deutil/ |
D | deProcess.c | 52 int exitCode; member 185 return process->exitCode; in deProcess_getExitCode() 420 process->exitCode = WEXITSTATUS(status); in deProcess_waitForFinish() 523 int exitCode; member 625 return process->exitCode; in deProcess_getExitCode() 737 int exitCode; in deProcess_isRunning() local 738 BOOL result = GetExitCodeProcess(process->procInfo.hProcess, (LPDWORD)&exitCode); in deProcess_isRunning() 746 if (exitCode == STILL_ACTIVE) in deProcess_isRunning() 751 process->exitCode = exitCode; in deProcess_isRunning()
|
/external/lzma/CPP/7zip/UI/Console/ |
D | MainAr.cpp | 108 catch(NExitCode::EEnum &exitCode) in main() local 112 *g_ErrStream << kInternalExceptionMessage << exitCode << endl; in main() 113 return (exitCode); in main()
|
/external/libcxx/utils/google-benchmark/tools/gbench/ |
D | util.py | 141 exitCode = subprocess.call(cmd) 142 if exitCode != 0: 144 sys.exit(exitCode)
|
/external/google-benchmark/tools/gbench/ |
D | util.py | 141 exitCode = subprocess.call(cmd) 142 if exitCode != 0: 144 sys.exit(exitCode)
|
/external/lzma/CPP/Windows/ |
D | Thread.h | 30 bool Terminate(DWORD exitCode) { return BOOLToBool(::TerminateThread(thread, exitCode)); } in Terminate() argument
|
/external/libcxx/utils/libcxx/android/ |
D | executors.py | 20 _, temp_path, err, exitCode = self._execute_command_remote([cmd]) 22 if exitCode != 0:
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPUnitDebuggeeProcessWrapper.java | 307 int exitCode = process.exitValue(); in WaitForProcessExit() local 308 logWriter.println("Finished debuggee with exit code: " + exitCode); in WaitForProcessExit() 309 if (exitCode != expectedExitCode) { in WaitForProcessExit() 310 throw new TestErrorException("Debuggee exited with code " + exitCode + in WaitForProcessExit()
|
/external/skia/infra/cts/ |
D | run_testlab.go | 243 exitCode := 0 254 exitCode = ws.ExitStatus() 258 sklog.Errorf("Exit code: %d", exitCode) 262 if exitCode != 10 { 273 ExitCode: exitCode,
|
/external/skqp/infra/cts/ |
D | run_testlab.go | 243 exitCode := 0 254 exitCode = ws.ExitStatus() 258 sklog.Errorf("Exit code: %d", exitCode) 262 if exitCode != 10 { 273 ExitCode: exitCode,
|
/external/catch2/include/internal/ |
D | catch_session.cpp | 228 int exitCode = runInternal(); in run() local 230 …Catch::cout() << "...waiting for enter/ return before exiting, with code: " << exitCode << std::en… in run() 233 return exitCode; in run()
|
/external/deqp/execserver/ |
D | xsProtocol.hpp | 156 int exitCode; member in xs::ProcessFinishedMessage 159 …ProcessFinishedMessage (int exitCode_) : Message(MESSAGETYPE_PROCESS_FINISHED), exitCode(exitCod… in ProcessFinishedMessage()
|
/external/llvm/utils/lit/lit/formats/ |
D | base.py | 104 out, err, exitCode = lit.util.executeCommand(cmd) 107 if not exitCode and not diags.strip():
|