Home | History | Annotate | Download | only in KillTheDoctor

Lines Matching refs:ec

221 /// @return If ec == errc::success, The absolute path to the program. Otherwise
223 static std::string FindProgram(const std::string &Program, error_code &ec) {
245 ec = windows_error(::GetLastError());
248 ec = windows_error::buffer_overflow;
252 ec = windows_error::success;
315 error_code ec;
316 ProgramToRun = FindProgram(ProgramToRun, ec);
317 if (ec) {
319 << "': " << ec.message() << '\n';
388 ec = windows_error(::GetLastError());
391 << ec.message() << '\n';
423 ec = windows_error(::GetLastError());
425 if (ec == errc::timed_out) {
433 << ProgramToRun << "': " << ec.message() << '\n';
473 ec = GetFileNameFromHandle(DLLFile, DLLName);
474 if (ec) {
476 ec.message();
542 ec = windows_error(::GetLastError());
544 << ProgramToRun << "': " << ec.message() << '\n';