Lines Matching refs:success
172 bool Success = false;
177 Success = ::GetFileSizeEx(FileHandle, &FileSize);
179 if (!Success)
201 Success = ::GetMappedFileNameA(::GetCurrentProcess(),
206 if (!Success)
210 return windows_error::success;
231 /// @return If ec == errc::success, The absolute path to the program. Otherwise
262 ec = windows_error::success;
274 BOOL success = ::OpenProcessToken(::GetCurrentProcess(),
277 if (!success)
284 success = ::LookupPrivilegeValueA(NULL,
287 if (!success)
294 success = ::AdjustTokenPrivileges(Token,
300 // The value of success is basically useless. Either way we are just returning
391 BOOL success = ::CreateProcessA(ProgramToRun.c_str(),
401 if (!success) {
425 success = ::GetProcessTimes(ProcessInfo.hProcess,
430 if (!success) {
463 success = WaitForDebugEvent(&DebugEvent, TimeLeft);
465 if (!success) {
581 success = ContinueDebugEvent(DebugEvent.dwProcessId,
584 if (!success) {