Home | History | Annotate | Download | only in KillTheDoctor

Lines Matching refs:ec

225 /// @return If ec == errc::success, The absolute path to the program. Otherwise
228 std::error_code &ec) {
250 ec = windows_error(::GetLastError());
253 ec = windows_error(ERROR_BUFFER_OVERFLOW);
257 ec = std::error_code();
320 std::error_code ec;
321 ProgramToRun = FindProgram(ProgramToRun, ec);
322 if (ec) {
324 << "': " << ec.message() << '\n';
393 ec = windows_error(::GetLastError());
396 << ec.message() << '\n';
429 ec = windows_error(LastError);
439 << ProgramToRun << "': " << ec.message() << '\n';
479 ec = GetFileNameFromHandle(DLLFile, DLLName);
480 if (ec) {
482 DLLName += ec.message();
548 ec = windows_error(::GetLastError());
550 << ProgramToRun << "': " << ec.message() << '\n';