Home
last modified time | relevance | path

Searched refs:mTime (Results 1 – 6 of 6) sorted by relevance

/external/lzma/CPP/7zip/Common/
DFileStreams.h118 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetTime() argument
120 return File.SetTime(cTime, aTime, mTime); in SetTime()
122 bool SetMTime(const FILETIME *mTime) { return File.SetMTime(mTime); } in SetMTime() argument
/external/lzma/CPP/Windows/
DFileIO.cpp388 bool COutFile::SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetTime() argument
389 { return BOOLToBool(::SetFileTime(_handle, cTime, aTime, mTime)); } in SetTime()
391 bool COutFile::SetMTime(const FILETIME *mTime) { return SetTime(NULL, NULL, mTime); } in SetMTime() argument
DFileIO.h126 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
127 bool SetMTime(const FILETIME *mTime);
DFileDir.h24 … SetDirTime(LPCWSTR fileName, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
DFileDir.cpp91 …l SetDirTime(LPCWSTR fileName, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetDirTime() argument
117 res = BOOLToBool(::SetFileTime(hDir, cTime, aTime, mTime)); in SetDirTime()
/external/lzma/C/Util/SfxSetup/
DSfxSetup.c470 FILETIME mTime; in main() local
471 mTime.dwLowDateTime = f->MTime.Low; in main()
472 mTime.dwHighDateTime = f->MTime.High; in main()
473 SetFileTime(outFile.handle, NULL, NULL, &mTime); in main()