HomeSort by relevance Sort by last modified time
    Searched refs:time_struct (Results 1 - 14 of 14) sorted by null

  /external/ltp/testcases/kernel/io/disktest/
stats.c 62 fmt_time_t time_struct; local
307 time_struct = format_time(hread_time);
310 hread_time, time_struct.hours,
311 time_struct.minutes,
312 time_struct.seconds);
315 time_struct = format_time(hwrite_time);
318 hwrite_time, time_struct.hours,
319 time_struct.minutes,
320 time_struct.seconds);
325 time_struct = format_time(read_time)
    [all...]
sfunc.c 660 fmt_time_t time_struct; local
662 time_struct.days = seconds / 86400;
663 time_struct.hours = (seconds % 86400) / 3600;
664 time_struct.minutes = (seconds % 3600) / 60;
665 time_struct.seconds = seconds % 60;
667 return time_struct;
  /external/stressapptest/src/
logger.cc 45 struct tm time_struct; local
46 localtime_r(&raw_time, &time_struct);
48 &time_struct);
  /external/google-breakpad/src/testing/gtest/src/
gtest.cc 3208 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
3211 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
    [all...]
  /external/mesa3d/src/gtest/src/
gtest.cc 3228 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
3231 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest.cc 3223 struct tm time_struct; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest.cc 3202 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
3205 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
    [all...]
  /external/googletest/googletest/src/
gtest.cc 3598 struct tm time_struct; local
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest.cc 3576 struct tm time_struct; local
    [all...]
  /external/scapy/scapy/layers/
dns.py 693 time_struct = time.gmtime(self._convert_seconds(packed_seconds))
694 return time.strftime("%a %b %d %H:%M:%S %Y", time_struct)
  /external/v8/testing/gtest/src/
gtest.cc 3573 struct tm time_struct; local
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc 4712 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
4715 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc 4712 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
4715 const struct tm* const time_struct = localtime(&seconds); \/\/ NOLINT local
    [all...]
  /external/python/cpython3/Lib/test/
test_xmlrpc.py 378 time_struct = time.struct_time(
380 localtime_mock.return_value = time_struct
    [all...]

Completed in 4850 milliseconds