Home
last modified time | relevance | path

Searched refs:FILETIME (Results 1 – 25 of 135) sorted by relevance

123456

/external/lzma/CPP/Windows/
DTimeUtils.h12 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime) throw();
13 bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime) throw();
17 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileTime) throw();
21 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &fileTime) throw();
23 bool FileTimeToUnixTime(const FILETIME &fileTime, UInt32 &unixTime) throw();
24 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw();
28 void GetCurUtcFileTime(FILETIME &ft) throw();
DTimeUtils.cpp19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) throw() in DosTimeToFileTime()
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) throw() in FileTimeToDosTime()
123 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &ft) throw() in UnixTimeToFileTime()
135 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) throw() in UnixTime64ToFileTime()
154 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw() in FileTimeToUnixTime64()
160 bool FileTimeToUnixTime(const FILETIME &ft, UInt32 &unixTime) throw() in FileTimeToUnixTime()
199 void GetCurUtcFileTime(FILETIME &ft) throw() in GetCurUtcFileTime()
DFileDir.h17 bool SetDirTime(CFSTR path, const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime);
DFileIO.h202 bool SetTime(const FILETIME *cTime, const FILETIME *aTime, const FILETIME *mTime) throw();
203 bool SetMTime(const FILETIME *mTime) throw();
DPropVariantConv.h16 bool ConvertUtcFileTimeToString(const FILETIME &ft, char *s, int level = kTimestampPrintLevel_SEC) …
17 bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *s, int level = kTimestampPrintLevel_SE…
DPropVariantConv.cpp12 bool ConvertUtcFileTimeToString(const FILETIME &utc, char *s, int level) throw() in ConvertUtcFileTimeToString()
15 FILETIME ft; in ConvertUtcFileTimeToString()
83 bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *dest, int level) throw() in ConvertUtcFileTimeToString()
/external/libcxx/utils/google-benchmark/src/
Dtimers.cc69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime()
112 FILETIME creation_time; in ProcessCPUUsage()
113 FILETIME exit_time; in ProcessCPUUsage()
114 FILETIME kernel_time; in ProcessCPUUsage()
115 FILETIME user_time; in ProcessCPUUsage()
143 FILETIME creation_time; in ThreadCPUUsage()
144 FILETIME exit_time; in ThreadCPUUsage()
145 FILETIME kernel_time; in ThreadCPUUsage()
146 FILETIME user_time; in ThreadCPUUsage()
/external/google-benchmark/src/
Dtimers.cc69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime()
112 FILETIME creation_time; in ProcessCPUUsage()
113 FILETIME exit_time; in ProcessCPUUsage()
114 FILETIME kernel_time; in ProcessCPUUsage()
115 FILETIME user_time; in ProcessCPUUsage()
143 FILETIME creation_time; in ThreadCPUUsage()
144 FILETIME exit_time; in ThreadCPUUsage()
145 FILETIME kernel_time; in ThreadCPUUsage()
146 FILETIME user_time; in ThreadCPUUsage()
/external/python/cpython2/Lib/ctypes/
Dwintypes.py127 class FILETIME(Structure): class
130 _FILETIME = FILETIME
144 ("ftCreationTime", FILETIME),
145 ("ftLastAccessTime", FILETIME),
146 ("ftLastWriteTime", FILETIME),
156 ("ftCreationTime", FILETIME),
157 ("ftLastAccessTime", FILETIME),
158 ("ftLastWriteTime", FILETIME),
/external/lzma/CPP/7zip/
DIStream.h106 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri…
117 FILETIME CTime;
118 FILETIME ATime;
119 FILETIME MTime;
/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()
139 bool SetMTime(const FILETIME *mTime) { return File.SetMTime(mTime); } in SetMTime()
/external/libevent/test/
Dtest-changelist.c57 FILETIME usertimeBegin;
58 FILETIME kerneltimeBegin;
69 FILETIME createtime, exittime; in start_cpu_usage_timer()
82 filetime_to_100nsec(const FILETIME *ft) in filetime_to_100nsec()
91 filetime_diff(const FILETIME *ftStart, const FILETIME *ftEnd) in filetime_diff()
109 FILETIME createtime, exittime, usertimeEnd, kerneltimeEnd; in get_cpu_usage()
/external/python/cpython3/Lib/ctypes/
Dwintypes.py128 class FILETIME(ctypes.Structure): class
131 _FILETIME = FILETIME
145 ("ftCreationTime", FILETIME),
146 ("ftLastAccessTime", FILETIME),
147 ("ftLastWriteTime", FILETIME),
157 ("ftCreationTime", FILETIME),
158 ("ftLastAccessTime", FILETIME),
159 ("ftLastWriteTime", FILETIME),
176 LPFILETIME = PFILETIME = ctypes.POINTER(FILETIME)
/external/webrtc/webrtc/base/
Dwin32.cc320 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) { in FileTimeToUnixTime()
331 FILETIME base_ft; in FileTimeToUnixTime()
335 memcpy(&base_ul, &base_ft, sizeof(FILETIME)); in FileTimeToUnixTime()
336 memcpy(&current_ul, &ft, sizeof(FILETIME)); in FileTimeToUnixTime()
344 void UnixTimeToFileTime(const time_t& ut, FILETIME* ft) { in UnixTimeToFileTime()
355 FILETIME base_ft; in UnixTimeToFileTime()
359 memcpy(&base_ul, &base_ft, sizeof(FILETIME)); in UnixTimeToFileTime()
366 memcpy(ft, &current_ul, sizeof(FILETIME)); in UnixTimeToFileTime()
Dwin32.h79 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut);
82 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft);
88 inline uint64_t ToUInt64(const FILETIME& ft) { in ToUInt64()
/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.h158 FILETIME CTime;
159 FILETIME ATime;
160 FILETIME MTime;
219 FILETIME CTime;
220 FILETIME ATime;
221 FILETIME MTime;
270 HRESULT GetTime(UInt32 index, PROPID propID, FILETIME &filetime, bool &filetimeIsDefined);
DDirItem.h82 FILETIME CTime;
83 FILETIME ATime;
84 FILETIME MTime;
177 FILETIME MTime;
/external/lzma/CPP/7zip/Bundles/SFXSetup/
DExtractCallbackSfx.h43 FILETIME MTime;
52 FILETIME _defaultMTime;
67 const FILETIME &defaultMTime,
/external/webrtc/webrtc/system_wrappers/source/
Dclock.cc101 FILETIME file_time;
108 FILETIME StartTime; in CurrentTimeVal()
127 void GetTime(FILETIME* current_time) const { in GetTime()
159 FILETIME ft0 = {}; in GetSystemReferencePoint()
160 FILETIME ft1 = {}; in GetSystemReferencePoint()
/external/lzma/CPP/Common/
DMyWindows.h80 } FILETIME; typedef
190 FILETIME filetime;
217 MY_EXTERN_C LONG CompareFileTime(const FILETIME* ft1, const FILETIME* ft2);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DWindowsSupport.h218 inline std::chrono::nanoseconds toDuration(FILETIME Time) { in toDuration()
227 inline TimePoint<> toTimePoint(FILETIME Time) { in toTimePoint()
239 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME()
244 FILETIME Time; in toFILETIME()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DWindowsSupport.h216 inline std::chrono::nanoseconds toDuration(FILETIME Time) { in toDuration()
225 inline TimePoint<> toTimePoint(FILETIME Time) { in toTimePoint()
237 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME()
242 FILETIME Time; in toFILETIME()
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DProcess.inc90 GetProcessTimes(GetCurrentProcess(), (FILETIME*)&ProcCreate,
91 (FILETIME*)&ProcExit, (FILETIME*)&KernelTime,
92 (FILETIME*)&UserTime);
94 // FILETIME's are # of 100 nanosecond ticks (1/10th of a microsecond)
/external/lzma/CPP/7zip/UI/FileManager/
DExtractCallback.h82 FILETIME CTime;
83 FILETIME ATime;
84 FILETIME MTime;
210 const FILETIME *srcTime,
/external/grpc-grpc/src/cpp/server/load_reporter/
Dget_cpu_stats_windows.cc33 uint64_t FiletimeToInt(const FILETIME& ft) { in FiletimeToInt()
44 FILETIME idle, kernel, user; in GetCpuStatsImpl()

123456