Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDCrashRecoveryContext.cpp66 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash()
77 CRC->RetCode = RetCode; in HandleCrash()
205 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() local
206 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter()
207 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionFilter()
211 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter()
285 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler() local
286 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler()
287 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionHandler()
291 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler()
[all …]
HDProcess.cpp93 void Process::Exit(int RetCode) { in Exit() argument
95 CRC->HandleExit(RetCode); in Exit()
96 ::exit(RetCode); in Exit()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
HDFileSystemStatCache.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()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDCrashRecoveryContext.h103 void HandleExit(int RetCode);
106 int RetCode = 0; variable
HDProcess.h209 static void Exit(int RetCode);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
HDJob.cpp419 return CRC.RetCode; in Execute()
HDDriver.cpp3046 auto RetCode = in addDeviceDependencesToHostAction() local
3052 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction()
3057 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction()
3111 auto RetCode = SB->addDeviceDepences(HostAction); in addHostDependenceToDeviceActions() local
3115 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions()
3120 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()