Lines Matching defs:mTime
533 bool COutFile::SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw()
534 { return BOOLToBool(::SetFileTime(_handle, cTime, aTime, mTime)); }
536 bool COutFile::SetMTime(const FILETIME *mTime) throw() { return SetTime(NULL, NULL, mTime); }
626 bool SetDirTime(CFSTR path, const CFiTime *cTime, const CFiTime *aTime, const CFiTime *mTime);
872 bool COutFile::SetTime(const CFiTime *cTime, const CFiTime *aTime, const CFiTime *mTime) throw()
879 if (mTime) { MTime = *mTime; MTime_defined = true; } else MTime_defined = false;
885 if (!aTime && !mTime)
889 needChange |= FiTime_To_timespec(mTime, times[1]);
896 bool COutFile::SetMTime(const CFiTime *mTime) throw()
898 if (mTime) { MTime = *mTime; MTime_defined = true; } else MTime_defined = false;