Home
last modified time | relevance | path

Searched refs:LastError (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp101 DWORD LastError = GetLastError(); in FileSize() local
102 if (LastError != ERROR_FILE_NOT_FOUND) in FileSize()
104 Path.c_str(), LastError); in FileSize()
152 DWORD LastError = GetLastError(); in ListFilesInDirRecursive() local
153 if (LastError != ERROR_NO_MORE_FILES) in ListFilesInDirRecursive()
181 DWORD LastError = GetLastError(); in IterateDirRecursive() local
182 if (LastError != ERROR_FILE_NOT_FOUND) { in IterateDirRecursive()
185 LastError); in IterateDirRecursive()
204 DWORD LastError = GetLastError(); in IterateDirRecursive() local
205 if (LastError != ERROR_NO_MORE_FILES) in IterateDirRecursive()
[all …]
H A DFuzzerUtilWindows.cpp131 DWORD LastError = GetLastError(); in SetSignalHandler() local
133 LastError); in SetSignalHandler()
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp169 Optional<Error> LastError; member in __anon8a24fc970111::TypeStreamMerger
226 if (LastError) in remapIndexFallback()
227 LastError = joinErrors(std::move(*LastError), errorCorruptRecord()); in remapIndexFallback()
229 LastError = errorCorruptRecord(); in remapIndexFallback()
321 while (!LastError && NumBadIndices > 0) { in doit()
332 if (!LastError && NumBadIndices == BadIndicesRemaining) { in doit()
338 if (LastError) in doit()
339 return std::move(*LastError); in doit()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h86 instrprof_error LastError = instrprof_error::success; variable
145 LastError = Err;
154 LastError = IPE.get(); in error()
157 return make_error<InstrProfError>(LastError, LastErrorMsg); in error()
165 bool isEOF() { return LastError == instrprof_error::eof; } in isEOF()
168 bool hasError() { return LastError != instrprof_error::success && !isEOF(); } in hasError()
173 return make_error<InstrProfError>(LastError, LastErrorMsg); in getError()
/llvm-project-15.0.7/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp425 DWORD LastError = ::GetLastError(); in main() local
426 ec = windows_error(LastError); in main()
428 if (LastError == ERROR_SEM_TIMEOUT || LastError == WSAETIMEDOUT) { in main()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc250 DWORD LastError = ::GetLastError();
252 return mapWindowsError(LastError);
630 DWORD LastError = ::GetLastError();
633 return mapWindowsError(LastError);
746 DWORD LastError = ::GetLastError();
748 LastError == ERROR_PATH_NOT_FOUND)
754 return mapWindowsError(LastError);
1017 return mapWindowsError(LastError);
1051 DWORD LastError = ::GetLastError();
1055 return mapWindowsError(LastError);
[all …]
H A DProgram.inc115 DWORD LastError = GetLastError();
119 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
124 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkResult.cpp36 : State(&State), ErrorStream(LastError), in YamlContext()
175 std::string LastError; member