Home
last modified time | relevance | path

Searched refs:cTime (Results 1 – 9 of 9) sorted by relevance

/external/lzma/CPP/7zip/Common/
DFileStreams.h92 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri…
135 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetTime() argument
137 return File.SetTime(cTime, aTime, mTime); in SetTime()
DFileStreams.cpp297 STDMETHODIMP CInFileStream::GetProps(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTim… in GetProps() argument
303 if (cTime) *cTime = info.ftCreationTime; in GetProps()
/external/conscrypt/common/src/test/java/org/conscrypt/javax/net/ssl/
DSSLSessionTest.java98 long cTime = s.client.getCreationTime() / 1000; in test_SSLSession_getCreationTime() local
99 assertTrue(cTime + " >= " + t0, cTime >= t0); in test_SSLSession_getCreationTime()
100 assertTrue(cTime + " <= " + t1, cTime <= t1); in test_SSLSession_getCreationTime()
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/javax/net/ssl/
DSSLSessionTest.java102 long cTime = s.client.getCreationTime() / 1000; in test_SSLSession_getCreationTime() local
103 assertTrue(cTime + " >= " + t0, cTime >= t0); in test_SSLSession_getCreationTime()
104 assertTrue(cTime + " <= " + t1, cTime <= t1); in test_SSLSession_getCreationTime()
/external/lzma/CPP/7zip/
DIStream.h106 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri…
/external/lzma/CPP/Windows/
DFileDir.h17 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
DFileIO.cpp386 bool COutFile::SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw() in SetTime() argument
387 { return BOOLToBool(::SetFileTime(_handle, cTime, aTime, mTime)); } in SetTime()
DFileDir.cpp72 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) in SetDirTime() argument
99 res = BOOLToBool(::SetFileTime(hDir, cTime, aTime, mTime)); in SetDirTime()
DFileIO.h202 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw();