/bionic/libc/arch-arm/syscalls/ |
clock_gettime.S | 5 ENTRY(clock_gettime) function 14 END(clock_gettime)
|
/bionic/libc/arch-mips/syscalls/ |
clock_gettime.S | 5 ENTRY(clock_gettime) function 19 END(clock_gettime)
|
/external/fio/os/windows/ |
posix.h | 7 extern int clock_gettime(clockid_t clock_id, struct timespec *tp);
|
/bionic/libc/arch-mips64/syscalls/ |
clock_gettime.S | 5 ENTRY(clock_gettime) function 25 END(clock_gettime)
|
/bionic/libc/arch-x86/syscalls/ |
clock_gettime.S | 5 ENTRY(clock_gettime) function 26 END(clock_gettime)
|
/external/chromium_org/third_party/skia/bench/ |
BenchSysTimer_posix.cpp | 29 if (-1 == clock_gettime(CLOCK_MONOTONIC, &this->fWall)) { 35 if (-1 == clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &this->fCpu)) { 43 if (-1 == clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end_cpu)) { 52 if (-1 == clock_gettime(CLOCK_MONOTONIC, &end_wall)) {
|
/external/skia/tools/timer/ |
SysTimer_posix.cpp | 23 if (-1 == clock_gettime(CLOCK_MONOTONIC, &fWall)) { 29 if (-1 == clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &fCpu)) { 37 if (-1 == clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end_cpu)) { 46 if (-1 == clock_gettime(CLOCK_MONOTONIC, &end_wall)) {
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
ostime.h | 16 int clock_gettime(clockid_t clock_id, struct timespec* tp);
|
/frameworks/av/media/libcpustats/ |
ThreadCpuUsage.cpp | 39 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &mPreviousTs); 41 ALOGE("clock_gettime(CLOCK_THREAD_CPUTIME_ID) errno=%d", errno); 47 rc = clock_gettime(CLOCK_MONOTONIC, &mMonotonicTs); 49 ALOGE("clock_gettime(CLOCK_MONOTONIC) errno=%d", errno); 58 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts); 60 ALOGE("clock_gettime(CLOCK_THREAD_CPUTIME_ID) errno=%d", errno); 102 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts); 104 ALOGE("clock_gettime(CLOCK_THREAD_CPUTIME_ID) errno=%d", errno); 133 rc = clock_gettime(CLOCK_MONOTONIC, &ts); 135 ALOGE("clock_gettime(CLOCK_MONOTONIC) errno=%d", errno) [all...] |
/external/chromium_org/components/nacl/loader/nonsfi/ |
irt_clock.cc | 47 // clock_getres() requires a NULL check but clock_gettime() doesn't. 59 if (clock_gettime(host_clk_id, &host_tp))
|
/external/chromium_org/third_party/libevent/ |
libevent.gyp | 39 # We need rt for clock_gettime(). 46 # On android, clock_gettime() is in libc.so, so no need to link librt.
|
/external/compiler-rt/test/tsan/ |
bench.h | 35 clock_gettime(CLOCK_MONOTONIC, &tp0); 38 clock_gettime(CLOCK_MONOTONIC, &tp1);
|
cond_version.c | 26 clock_gettime(CLOCK_MONOTONIC, &ts0); 36 clock_gettime(CLOCK_MONOTONIC, &ts2);
|
/external/libcxx/cmake/ |
config-ix.cmake | 30 check_library_exists(rt clock_gettime "" LIBCXX_HAS_RT_LIB)
|
/external/libcxx/src/ |
chrono.cpp | 17 #include <time.h> // clock_gettime, CLOCK_MONOTONIC 111 // FIXME: We assume that clock_gettime(CLOCK_MONOTONIC) works on 124 if (0 != clock_gettime(CLOCK_MONOTONIC, &tp)) 125 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed");
|
/hardware/ril/librilutils/ |
librilutils.c | 22 clock_gettime(CLOCK_MONOTONIC, &now);
|
/development/perftests/panorama/ |
benchmark.cpp | 87 clock_gettime(CLOCK_MONOTONIC, &t1); 91 clock_gettime(CLOCK_MONOTONIC, &t2); 104 clock_gettime(CLOCK_MONOTONIC, &t3);
|
/external/deqp/framework/delibs/deutil/ |
deClock.c | 51 clock_gettime(CLOCK_MONOTONIC, &currTime); 56 /* Symbian supports only realtime clock for clock_gettime. */ 58 clock_gettime(CLOCK_REALTIME, &currTime);
|
/external/eigen/bench/ |
BenchTimer.h | 43 * On POSIX platforms we use clock_gettime with CLOCK_PROCESS_CPUTIME_ID. 129 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts); 144 clock_gettime(CLOCK_REALTIME, &ts);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
chrono.cpp | 17 #include <time.h> // clock_gettime, CLOCK_MONOTONIC 121 if (0 != clock_gettime(CLOCK_MONOTONIC, &tp)) 122 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed");
|
/system/extras/tests/timetest/ |
timetest.c | 17 if(clock_gettime(CLOCK_MONOTONIC, &t)) { 77 clock_gettime(clock_id, &t1); 81 clock_gettime(clock_id, &t);
|
/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
condition_variable_posix.cc | 95 clock_gettime(CLOCK_REALTIME, &ts); 97 clock_gettime(CLOCK_MONOTONIC, &ts);
|
/external/webrtc/src/system_wrappers/source/ |
condition_variable_posix.cc | 112 clock_gettime(CLOCK_REALTIME, &ts); 114 clock_gettime(CLOCK_MONOTONIC, &ts);
|
/frameworks/base/core/jni/ |
android_os_SystemClock.cpp | 66 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm); 86 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
|
/hardware/libhardware/modules/local_time/ |
local_time_hw.c | 40 ret = clock_gettime(CLOCK_MONOTONIC, &ts); 55 // For better or worse, linux clock_gettime routines normalize all clock
|