HomeSort by: relevance | last modified time | path
    Searched refs:LastError (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeStreamMerger.cpp 169 Optional<Error> LastError;
226 if (LastError)
227 LastError = joinErrors(std::move(*LastError), errorCorruptRecord());
229 LastError = errorCorruptRecord();
321 while (!LastError && NumBadIndices > 0) {
332 if (!LastError && NumBadIndices == BadIndicesRemaining) {
338 if (LastError)
339 return std::move(*LastError);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
Program.inc 113 DWORD LastError = GetLastError();
117 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
122 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
Path.inc 235 DWORD LastError = ::GetLastError();
236 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
237 return mapWindowsError(LastError);
616 DWORD LastError = ::GetLastError();
617 if (LastError != ERROR_FILE_NOT_FOUND &&
618 LastError != ERROR_PATH_NOT_FOUND)
619 return mapWindowsError(LastError);
732 DWORD LastError = ::GetLastError();
733 if (LastError == ERROR_FILE_NOT_FOUND ||
734 LastError == ERROR_PATH_NOT_FOUND
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilWindows.cpp 123 DWORD LastError = GetLastError();
125 LastError);
FuzzerIOWindows.cpp 134 DWORD LastError = GetLastError();
135 if (LastError != ERROR_NO_MORE_FILES)
136 Printf("FindNextFileA failed (Error code: %lu).\n", LastError);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProfReader.h 73 instrprof_error LastError = instrprof_error::success;
115 LastError = Err;
128 bool isEOF() { return LastError == instrprof_error::eof; }
131 bool hasError() { return LastError != instrprof_error::success && !isEOF(); }
136 return make_error<InstrProfError>(LastError);
  /src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 425 DWORD LastError = ::GetLastError();
426 ec = windows_error(LastError);
428 if (LastError == ERROR_SEM_TIMEOUT || LastError == WSAETIMEDOUT) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkResult.cpp 36 : State(&State), ErrorStream(LastError),
175 std::string LastError;

Completed in 42 milliseconds