Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DPath.inc88 return mapWindowsError(::GetLastError());
163 return mapWindowsError(::GetLastError());
201 return mapWindowsError(::GetLastError());
220 return mapWindowsError(::GetLastError());
237 return mapWindowsError(LastError);
254 return mapWindowsError(::GetLastError());
287 std::error_code EC = mapWindowsError(::GetLastError());
309 return mapWindowsError(Err);
363 return mapWindowsError(GetLastError());
413 return mapWindowsError(::GetLastError());
[all …]
H A DMemory.inc142 EC = mapWindowsError(::GetLastError());
162 return mapWindowsError(::GetLastError());
179 return mapWindowsError(::GetLastError());
H A DProcess.inc211 return mapWindowsError(GetLastError());
219 return mapWindowsError(GetLastError());
224 return mapWindowsError(ERROR_INSUFFICIENT_BUFFER);
H A DSignals.inc738 return mapWindowsError(::GetLastError());
801 return mapWindowsError(::GetLastError());
H A DProgram.inc104 return mapWindowsError(::GetLastError());
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DWindowsError.h15 std::error_code mapWindowsError(unsigned EV);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DErrorHandling.cpp246 std::error_code llvm::mapWindowsError(unsigned EV) { in mapWindowsError() function in llvm
/netbsd-src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp173 static std::error_code windows_error(DWORD E) { return mapWindowsError(E); } in windows_error()