Home
last modified time | relevance | path

Searched refs:RetCode (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCrashRecoveryContext.cpp64 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash()
75 CRC->RetCode = RetCode; in HandleCrash()
210 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() local
211 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter()
212 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionFilter()
216 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter()
290 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler() local
291 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler()
292 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionHandler()
296 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler()
[all …]
H A DProcess.cpp96 void Process::Exit(int RetCode, bool NoCleanup) { in Exit() argument
98 CRC->HandleExit(RetCode); in Exit()
101 ExitNoCleanup(RetCode); in Exit()
103 ::exit(RetCode); in Exit()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DFileSystemStatCache.cpp39 std::error_code RetCode; in get() local
43 RetCode = Cache->getStat(Path, Status, isFile, F, FS); in get()
49 RetCode = StatusOrErr.getError(); in get()
65 RetCode = OwnedFile.getError(); in get()
78 RetCode = StatusOrErr.getError(); in get()
84 if (RetCode) in get()
85 return RetCode; in get()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h103 void HandleExit(int RetCode);
107 static bool throwIfCrash(int RetCode);
110 int RetCode = 0; variable
H A DProcess.h218 static void Exit(int RetCode, bool NoCleanup = false);
222 static void ExitNoCleanup(int RetCode);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkRunner.cpp112 if (const char *const SigName = strsignal(CRC.RetCode - kSigOffset)) { in runAndSample()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DProcess.inc465 void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DProcess.inc508 void Process::ExitNoCleanup(int RetCode) {
509 TerminateProcess(GetCurrentProcess(), RetCode);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DJob.cpp406 return CRC.RetCode; in Execute()
H A DDriver.cpp3341 auto RetCode = in addDeviceDependencesToHostAction() local
3347 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction()
3352 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction()
3407 auto RetCode = SB->addDeviceDepences(HostAction); in addHostDependenceToDeviceActions() local
3411 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions()
3416 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()