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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DFileSystemStatCache.cpp39 std::error_code RetCode; local
43 RetCode = Cache->getStat(Path, Status, isFile, F, FS);
49 RetCode = StatusOrErr.getError();
65 RetCode = OwnedFile.getError();
78 RetCode = StatusOrErr.getError();
84 if (RetCode)
85 return RetCode;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp63 // 'RetCode' represents the returned error code, as if it was returned by a
66 void HandleCrash(int RetCode, uintptr_t Context) { argument
77 CRC->RetCode = RetCode;
205 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; local
206 if ((RetCode & 0xF0000000) == 0xE0000000)
207 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit
211 RetCode, reinterpret_cast<uintptr_t>(Except));
285 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; local
286 if ((RetCode
375 int RetCode = -2; local
425 HandleExit(int RetCode) argument
[all...]
H A DProcess.cpp93 void Process::Exit(int RetCode) { argument
95 CRC->HandleExit(RetCode);
96 ::exit(RetCode);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DProcess.h214 static void Exit(int RetCode);
H A DCrashRecoveryContext.h103 void HandleExit(int RetCode);
106 int RetCode = 0; variable
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp402 return CRC.RetCode;
H A DDriver.cpp3119 auto RetCode = local
3125 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host)
3130 if (RetCode != DeviceActionBuilder::ABRT_Inactive)
3184 auto RetCode = SB->addDeviceDepences(HostAction); local
3188 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host &&
3193 if (RetCode != DeviceActionBuilder::ABRT_Inactive)

Completed in 72 milliseconds