HomeSort by relevance Sort by last modified time
    Searched refs:clock_gettime (Results 326 - 350 of 602) sorted by null

<<11121314151617181920>>

  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/
perf.h 136 clock_gettime(CLOCK_MONOTONIC, &ts);
  /external/android-clat/
clatd_microbenchmark.c 144 clock_gettime(CLOCK_MONOTONIC, &tv1);
155 clock_gettime(CLOCK_MONOTONIC, &tv2);
  /external/google-benchmark/src/
timers.cc 103 // FIXME We want to use clock_gettime, but its not available in MacOS 10.11. See
107 if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &spec) == 0)
109 DiagnoseAndExit("clock_gettime(CLOCK_PROCESS_CPUTIME_ID, ...) failed");
123 DiagnoseAndExit("clock_gettime(CLOCK_PROCESS_CPUTIME_ID, ...) failed");
128 // FIXME We want to use clock_gettime, but its not available in MacOS 10.11. See
132 if (clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts) == 0) return MakeTime(ts);
133 DiagnoseAndExit("clock_gettime(CLOCK_THREAD_CPUTIME_ID, ...) failed");
  /external/libcxx/utils/google-benchmark/src/
timers.cc 103 // FIXME We want to use clock_gettime, but its not available in MacOS 10.11. See
107 if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &spec) == 0)
109 DiagnoseAndExit("clock_gettime(CLOCK_PROCESS_CPUTIME_ID, ...) failed");
123 DiagnoseAndExit("clock_gettime(CLOCK_PROCESS_CPUTIME_ID, ...) failed");
128 // FIXME We want to use clock_gettime, but its not available in MacOS 10.11. See
132 if (clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts) == 0) return MakeTime(ts);
133 DiagnoseAndExit("clock_gettime(CLOCK_THREAD_CPUTIME_ID, ...) failed");
  /external/libusb/libusb/os/
haiku_usb_raw.cpp 192 return clock_gettime(CLOCK_REALTIME, tp);
194 return clock_gettime(CLOCK_MONOTONIC, tp);
241 /*.clock_gettime =*/ haiku_clock_gettime,
  /external/ltp/testcases/kernel/syscalls/clock_nanosleep/
clock_nanosleep01.c 292 TEST(rc = clock_gettime(tc->clk_id, &beftp));
294 tst_resm(TFAIL | TTERRNO, "clock_gettime failed");
303 // !!!CAUTION: 'clock_gettime' returns errno itself
318 TEST(rc = clock_gettime(tc->clk_id, &afttp));
320 EPRINTF("clock_gettime failed.\n");
  /external/ltp/testcases/realtime/func/gtod_latency/
gtod_latency.c 307 clock_gettime(CLOCK_MONOTONIC, &start_data[k]);
308 clock_gettime(CLOCK_MONOTONIC, &stop_data[k]);
  /external/vulkan-validation-layers/demos/smoke/
ShellWayland.cpp 44 void reset() { clock_gettime(CLOCK_MONOTONIC, &start_); }
48 clock_gettime(CLOCK_MONOTONIC, &now);
ShellXcb.cpp 37 clock_gettime(CLOCK_MONOTONIC, &start_);
43 clock_gettime(CLOCK_MONOTONIC, &now);
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_Measure.c 300 if (clock_gettime(CLOCK_MONOTONIC, &tsstart) < 0) {
380 if (clock_gettime(CLOCK_MONOTONIC, &tsend) < 0) {
  /system/core/storaged/
storaged.cpp 250 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &start_ts) < 0) {
254 PLOG_TO(SYSTEM, ERROR) << "clock_gettime() failed";
261 if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end_ts) < 0) {
264 PLOG_TO(SYSTEM, ERROR) << "clock_gettime() failed";
  /system/extras/tests/sdcard/
stopwatch.cpp 81 clock_gettime(CLOCK_MONOTONIC, &mData[mDataLen].mTime);
95 clock_gettime(CLOCK_MONOTONIC, &mData[mDataLen].mTime);
  /bionic/tests/
system_properties_test2.cpp 30 clock_gettime(CLOCK_MONOTONIC, &now);
time_test.cpp 557 TEST(time, clock_gettime) {
558 // Try to ensure that our vdso clock_gettime is working.
560 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts1));
600 ASSERT_EQ(0, clock_gettime(clockid, &ts));
604 ASSERT_EQ(0, clock_gettime(clockid, &ts));
  /cts/tests/tests/nativemedia/aaudio/src/
utils.cpp 30 int result = clock_gettime(clockId, &time);
  /external/autotest/client/tests/cyclictest/src/
cyclictest.c 248 clock_gettime(par->clock, &now);
296 clock_gettime(par->clock, &now);
306 clock_gettime(par->clock, &now);
313 clock_gettime(par->clock, &now);
  /external/libmicrohttpd/src/testspdy/
test_session_timeout.c 58 if (0 == clock_gettime (CLOCK_MONOTONIC, &ts))
  /frameworks/av/media/libnbaio/
MonoPipe.cpp 127 bool nowTsValid = !clock_gettime(CLOCK_MONOTONIC, &nowTs);
133 "clock_gettime(CLOCK_MONOTONIC) failed: was %ld.%09ld but now %ld.%09ld",
  /frameworks/native/cmds/dumpstate/
DumpstateInternal.cpp 39 clock_gettime(CLOCK_MONOTONIC, &ts);
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.cpp 142 clock_gettime(CLOCK_MONOTONIC, &t);
  /hardware/qcom/gps/msm8084/utils/
loc_timer.c 63 clock_gettime(CLOCK_REALTIME, &ts);
  /hardware/qcom/gps/msm8994/utils/
loc_timer.c 63 clock_gettime(CLOCK_REALTIME, &ts);
  /hardware/qcom/gps/utils/
loc_timer.c 63 clock_gettime(CLOCK_REALTIME, &ts);
  /packages/services/BuiltInPrintService/jni/plugins/
wprint_mupdf.c 37 clock_gettime(CLOCK_MONOTONIC, &now);
  /system/core/gatekeeperd/
SoftGateKeeper.h 102 int res = clock_gettime(CLOCK_BOOTTIME, &time);

Completed in 1195 milliseconds

<<11121314151617181920>>