OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cTime
(Results
1 - 6
of
6
) sorted by null
/external/lzma/CPP/7zip/Common/
FileStreams.h
118
bool SetTime(const FILETIME *
cTime
, const FILETIME *aTime, const FILETIME *mTime)
120
return File.SetTime(
cTime
, aTime, mTime);
/libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSessionTest.java
71
long
cTime
= s.client.getCreationTime() / 1000;
72
assertTrue(
cTime
+ " >= " + t0,
cTime
>= t0);
73
assertTrue(
cTime
+ " <= " + t1,
cTime
<= t1);
/external/lzma/CPP/Windows/
FileIO.h
17
FILETIME
CTime
;
126
bool SetTime(const FILETIME *
cTime
, const FILETIME *aTime, const FILETIME *mTime);
FileIO.cpp
235
fileInfo.
CTime
= winFileInfo.ftCreationTime;
388
bool COutFile::SetTime(const FILETIME *
cTime
, const FILETIME *aTime, const FILETIME *mTime)
389
{ return BOOLToBool(::SetFileTime(_handle,
cTime
, aTime, mTime)); }
FileDir.h
24
bool SetDirTime(LPCWSTR fileName, const FILETIME *
cTime
, const FILETIME *aTime, const FILETIME *mTime);
FileDir.cpp
91
bool SetDirTime(LPCWSTR fileName, const FILETIME *
cTime
, const FILETIME *aTime, const FILETIME *mTime)
117
res = BOOLToBool(::SetFileTime(hDir,
cTime
, aTime, mTime));
Completed in 457 milliseconds