Home
last modified time | relevance | path

Searched refs:system_time (Results 1 – 15 of 15) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Dtrace_win.cc30 SYSTEMTIME system_time; in AddTime() local
31 GetSystemTime(&system_time); in AddTime()
48 sprintf(trace_message, "(%2u:%2u:%2u:%3u |%5u) ", system_time.wHour, in AddTime()
49 system_time.wMinute, system_time.wSecond, in AddTime()
50 system_time.wMilliseconds, dw_delta_time); in AddTime()
65 sprintf(trace_message, "(%2u:%2u:%2u:%3u |%5u) ", system_time.wHour, in AddTime()
66 system_time.wMinute, system_time.wSecond, in AddTime()
67 system_time.wMilliseconds, dw_delta_time); in AddTime()
Dtrace_posix.cc39 const struct tm* system_time = in AddTime() local
67 sprintf(trace_message, "(%2u:%2u:%2u:%3u |%5lu) ", system_time->tm_hour, in AddTime()
68 system_time->tm_min, system_time->tm_sec, ms_time, in AddTime()
/external/google-breakpad/src/client/windows/sender/
Dcrash_report_sender.cc121 SYSTEMTIME system_time; in GetCurrentDate() local
122 GetSystemTime(&system_time); in GetCurrentDate()
123 return (system_time.wYear * 10000) + (system_time.wMonth * 100) + in GetCurrentDate()
124 system_time.wDay; in GetCurrentDate()
/external/tensorflow/tensorflow/core/platform/windows/
Denv_time.cc56 FILETIME system_time; in NowNanos() local
57 GetSystemTimePreciseAsFileTime_(&system_time); in NowNanos()
60 li.LowPart = system_time.dwLowDateTime; in NowNanos()
61 li.HighPart = system_time.dwHighDateTime; in NowNanos()
/external/conscrypt/common/src/jni/main/include/conscrypt/
Dcompat.h95 SYSTEMTIME system_time; in gettimeofday() local
99 GetSystemTime(&system_time); in gettimeofday()
100 SystemTimeToFileTime(&system_time, &file_time); in gettimeofday()
105 tp->tv_usec = static_cast<long>(system_time.wMilliseconds * 1000); // NOLINT(runtime/int) in gettimeofday()
/external/perfetto/include/perfetto/base/
Dtime.h94 info.system_time.seconds * 1000000000LL + in GetThreadCPUTimeNs()
95 info.system_time.microseconds * 1000LL); in GetThreadCPUTimeNs()
/external/libcxx/utils/google-benchmark/src/
Dtimers.cc92 static_cast<double>(info.system_time.seconds) + in MakeTime()
93 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
/external/google-benchmark/src/
Dtimers.cc92 static_cast<double>(info.system_time.seconds) + in MakeTime()
93 static_cast<double>(info.system_time.microseconds) * 1e-6); in MakeTime()
/external/python/cpython3/Python/
Dpytime.c656 FILETIME system_time; in pygettimeofday() local
661 GetSystemTimeAsFileTime(&system_time); in pygettimeofday()
662 large.u.LowPart = system_time.dwLowDateTime; in pygettimeofday()
663 large.u.HighPart = system_time.dwHighDateTime; in pygettimeofday()
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/
Dcontrol.proto212 // server load based on system_time (0.85 => 85%)
216 // client load based on system_time (0.85 => 85%)
/external/grpc-grpc/src/proto/grpc/testing/
Dcontrol.proto225 // server load based on system_time (0.85 => 85%)
229 // client load based on system_time (0.85 => 85%)
/external/google-breakpad/src/processor/
Dminidump.cc200 static inline void Swap(MDSystemTime* system_time) { in Swap() argument
201 Swap(&system_time->year); in Swap()
202 Swap(&system_time->month); in Swap()
203 Swap(&system_time->day_of_week); in Swap()
204 Swap(&system_time->day); in Swap()
205 Swap(&system_time->hour); in Swap()
206 Swap(&system_time->minute); in Swap()
207 Swap(&system_time->second); in Swap()
208 Swap(&system_time->milliseconds); in Swap()
/external/v8/src/base/platform/
Dtime.cc45 thread_info_data.system_time.seconds); in ComputeThreadTicks()
48 thread_info_data.system_time.microseconds); in ComputeThreadTicks()
/external/ImageMagick/MagickCore/
Dnt-base.c630 system_time; in NTElapsedTime() local
642 GetSystemTime(&system_time); in NTElapsedTime()
643 SystemTimeToFileTime(&system_time,&elapsed_time.filetime); in NTElapsedTime()
/external/openssh/openbsd-compat/
Dbsd-cray.c188 time_t system_time; /* current system clock */ in cray_setup() local