Home
last modified time | relevance | path

Searched refs:TimeValue (Results 1 – 25 of 30) sorted by relevance

12

/external/llvm/include/llvm/Support/
DTimeValue.h31 class TimeValue {
41 static TimeValue MinTime() { in MinTime()
42 return TimeValue ( INT64_MIN,0 ); in MinTime()
49 static TimeValue MaxTime() { in MaxTime()
50 return TimeValue ( INT64_MAX,0 ); in MaxTime()
56 static TimeValue ZeroTime() { in ZeroTime()
57 return TimeValue ( 0,0 ); in ZeroTime()
63 static TimeValue PosixZeroTime() { in PosixZeroTime()
64 return TimeValue ( PosixZeroTimeSeconds,0 ); in PosixZeroTime()
70 static TimeValue Win32ZeroTime() { in Win32ZeroTime()
[all …]
DProcess.h63 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
64 TimeValue &sys_time);
DFileSystem.h199 TimeValue getLastModificationTime() const;
529 std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time);
/external/llvm/lib/Support/Unix/
DTimeValue.inc1 //===- Unix/TimeValue.cpp - Unix TimeValue Implementation -------*- C++ -*-===//
10 // This file implements the Unix specific portion of the TimeValue class.
24 std::string TimeValue::str() const {
36 TimeValue TimeValue::now() {
47 return TimeValue(
48 static_cast<TimeValue::SecondsType>( the_time.tv_sec +
50 static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
DProcess.inc20 #include "llvm/Support/TimeValue.h"
63 static std::pair<TimeValue, TimeValue> getRUsageTimes() {
68 TimeValue(
69 static_cast<TimeValue::SecondsType>(RU.ru_utime.tv_sec),
70 static_cast<TimeValue::NanoSecondsType>(
71 RU.ru_utime.tv_usec * TimeValue::NANOSECONDS_PER_MICROSECOND)),
72 TimeValue(
73 static_cast<TimeValue::SecondsType>(RU.ru_stime.tv_sec),
74 static_cast<TimeValue::NanoSecondsType>(
75 RU.ru_stime.tv_usec * TimeValue::NANOSECONDS_PER_MICROSECOND)));
[all …]
DPath.inc177 TimeValue file_status::getLastModificationTime() const {
178 TimeValue Ret;
397 std::error_code setLastModificationAndAccessTime(int FD, TimeValue Time) {
/external/llvm/lib/Support/
DTimeValue.cpp21 const TimeValue::SecondsType
22 TimeValue::PosixZeroTimeSeconds = -946684800;
23 const TimeValue::SecondsType
24 TimeValue::Win32ZeroTimeSeconds = -12591158400ULL;
26 void TimeValue::normalize() { in normalize()
DAndroid.mk80 TimeValue.cpp \
DCMakeLists.txt124 TimeValue.cpp
DTimer.cpp122 sys::TimeValue now(0,0), user(0,0), sys(0,0); in getCurrentTime()
/external/llvm/tools/dsymutil/
DBinaryHolder.h56 GetArchiveMemberBuffers(StringRef Filename, sys::TimeValue Timestamp);
64 MapArchiveAndGetMemberBuffers(StringRef Filename, sys::TimeValue Timestamp);
76 GetMemoryBuffersForFile(StringRef Filename, sys::TimeValue Timestamp);
93 sys::TimeValue Timestamp = sys::TimeValue::PosixZeroTime());
99 sys::TimeValue Timestamp = sys::TimeValue::PosixZeroTime()) {
DBinaryHolder.cpp55 sys::TimeValue Timestamp) { in GetMemoryBuffersForFile()
97 sys::TimeValue Timestamp) { in GetArchiveMemberBuffers()
118 if (Timestamp != sys::TimeValue::PosixZeroTime() && in GetArchiveMemberBuffers()
142 sys::TimeValue Timestamp) { in MapArchiveAndGetMemberBuffers()
188 BinaryHolder::GetObjectFiles(StringRef Filename, sys::TimeValue Timestamp) { in GetObjectFiles()
DDebugMap.h96 sys::TimeValue Timestamp);
148 sys::TimeValue getTimestamp() const { return Timestamp; } in getTimestamp()
161 DebugMapObject(StringRef ObjectFilename, sys::TimeValue Timestamp);
164 sys::TimeValue Timestamp;
DDebugMap.cpp24 sys::TimeValue Timestamp) in DebugMapObject()
63 sys::TimeValue Timestamp) { in addDebugMapObject()
132 sys::TimeValue::SecondsType Timestamp;
235 sys::TimeValue TV; in denormalize()
DMachODebugMapParser.cpp68 void switchToNewDebugMapObject(StringRef Filename, sys::TimeValue Timestamp);
114 sys::TimeValue Timestamp) { in switchToNewDebugMapObject()
350 sys::TimeValue Timestamp; in handleStabSymbolTableEntry()
/external/llvm/unittests/Support/
DTimeValueTest.cpp17 TEST(TimeValue, time_t) { in TEST() argument
18 sys::TimeValue now = sys::TimeValue::now(); in TEST()
23 TEST(TimeValue, Win32FILETIME) { in TEST() argument
26 sys::TimeValue epoch; in TEST()
/external/llvm/lib/Support/Windows/
DTimeValue.inc1 //===- Win32/TimeValue.cpp - Win32 TimeValue Implementation -----*- C++ -*-===//
10 // This file provides the Win32 implementation of the TimeValue class.
27 TimeValue TimeValue::now() {
31 TimeValue t(0, 0);
36 std::string TimeValue::str() const {
DProcess.inc52 static TimeValue getTimeValueFromFILETIME(FILETIME Time) {
58 return TimeValue(
59 static_cast<TimeValue::SecondsType>(TimeInteger.QuadPart / 10000000),
60 static_cast<TimeValue::NanoSecondsType>(
96 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
97 TimeValue &sys_time) {
98 elapsed = TimeValue::now();
/external/opencv3/modules/videoio/src/
Dcap_qt.cpp79 TimeValue movie_start_time; // movies can start at arbitrary times
187 TimeValue theTime = -1; in icvOpenFile_QT_Movie()
191 1, & whichMediaType, TimeValue (0), 0, & theTime, NULL); in icvOpenFile_QT_Movie()
277 TimeValue position = capture->next_frame_time - capture->movie_start_time; in icvGetProperty_QT_Movie()
286 TimeValue duration = GetMovieDuration (capture->myMovie); in icvGetProperty_QT_Movie()
300 TimeValue duration = GetMovieDuration (capture->myMovie); in icvGetProperty_QT_Movie()
345 TimeValue destination; in icvSetProperty_QT_Movie()
352 … destination = static_cast<TimeValue> (value / 1000.0 * timescale + capture->movie_start_time); in icvSetProperty_QT_Movie()
356 TimeValue duration = GetMovieDuration (capture->myMovie); in icvSetProperty_QT_Movie()
357 … destination = static_cast<TimeValue> (value * duration + capture->movie_start_time); in icvSetProperty_QT_Movie()
[all …]
/external/llvm/lib/Object/
DArchiveWriter.cpp103 const sys::TimeValue &ModTime, unsigned UID, in printRestOfMemberHeader()
115 const sys::TimeValue &ModTime, in printGNUSmallMemberHeader()
123 const sys::TimeValue &ModTime, unsigned UID, in printBSDMemberHeader()
146 const sys::TimeValue &ModTime, unsigned UID, unsigned GID, in printMemberHeader()
213 static sys::TimeValue now(bool Deterministic) { in now()
215 return sys::TimeValue::now(); in now()
216 sys::TimeValue TV; in now()
384 sys::TimeValue ModTime; in writeArchive()
DArchive.cpp60 sys::TimeValue ArchiveMemberHeader::getLastModified() const { in getLastModified()
66 sys::TimeValue Ret; in getLastModified()
/external/clang/include/clang/Basic/
DVirtualFileSystem.h35 llvm::sys::TimeValue MTime;
49 llvm::sys::TimeValue MTime, uint32_t User, uint32_t Group,
65 llvm::sys::TimeValue getLastModificationTime() const { return MTime; } in getLastModificationTime()
/external/llvm/include/llvm/Object/
DArchive.h43 sys::TimeValue getLastModified() const;
82 sys::TimeValue getLastModified() const { in getLastModified()
/external/clang/tools/libclang/
DBuildSystem.cpp27 return llvm::sys::TimeValue::now().toEpochTime(); in clang_getBuildSessionTimestamp()
/external/clang/lib/Basic/
DVirtualFileSystem.cpp47 Status::Status(StringRef Name, UniqueID UID, sys::TimeValue MTime, in Status()
480 Status("", getNextVirtualUniqueID(), llvm::sys::TimeValue::MinTime(), in InMemoryFileSystem()
518 llvm::sys::TimeValue(ModificationTime, 0), 0, 0, in addFile()
531 getNextVirtualUniqueID(), llvm::sys::TimeValue(ModificationTime, 0), in addFile()
1082 Status("", getNextVirtualUniqueID(), sys::TimeValue::now(), 0, 0, 0, in parseEntry()
1099 Status("", getNextVirtualUniqueID(), sys::TimeValue::now(), 0, 0, 0, in parseEntry()

12