HomeSort by relevance Sort by last modified time
    Searched refs:clock_gettime (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /bionic/libc/arch-arm/syscalls/
clock_gettime.S 5 ENTRY(clock_gettime) function
14 END(clock_gettime)
  /bionic/libc/arch-sh/syscalls/
clock_gettime.S 5 .type clock_gettime, @function
6 .globl clock_gettime
9 clock_gettime: label
  /bionic/libc/arch-x86/syscalls/
clock_gettime.S 5 .type clock_gettime, @function
6 .globl clock_gettime
9 clock_gettime: label
  /external/skia/bench/
BenchSysTimer_posix.cpp 22 if (-1 == clock_gettime(CLOCK_MONOTONIC, &this->fWall)) {
28 if (-1 == clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &this->fCpu)) {
36 if (-1 == clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end_cpu)) {
45 if (-1 == clock_gettime(CLOCK_MONOTONIC, &end_wall)) {
  /frameworks/base/libs/cpustats/
ThreadCpuUsage.cpp 32 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &mPreviousTs);
34 LOGE("clock_gettime(CLOCK_THREAD_CPUTIME_ID) errno=%d", errno);
40 rc = clock_gettime(CLOCK_MONOTONIC, &mMonotonicTs);
42 LOGE("clock_gettime(CLOCK_MONOTONIC) errno=%d", errno);
51 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts);
53 LOGE("clock_gettime(CLOCK_THREAD_CPUTIME_ID) errno=%d", errno);
87 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts);
89 LOGE("clock_gettime(CLOCK_THREAD_CPUTIME_ID) errno=%d", errno);
112 rc = clock_gettime(CLOCK_MONOTONIC, &ts);
114 LOGE("clock_gettime(CLOCK_MONOTONIC) errno=%d", errno)
    [all...]
  /external/qemu/
qemu-timer-common.c 57 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
qemu-thread.c 75 clock_gettime(CLOCK_REALTIME, &ts);
143 clock_gettime(CLOCK_REALTIME, &ts);
  /bionic/libc/unistd/
time.c 52 clock_gettime( CLOCK_MONOTONIC, &tm);
  /external/srec/portable/src/
ptimestamp.c 43 clock_gettime(CLOCK_REALTIME, &now);
  /frameworks/base/core/jni/
android_os_SystemClock.cpp 71 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
91 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
  /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);
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
TimeUtils.cpp 48 clock_gettime(CLOCK_MONOTONIC, &now);
  /external/webrtc/src/system_wrappers/source/
event_linux.cc 141 clock_gettime(CLOCK_REALTIME, &tEnd);
143 clock_gettime(CLOCK_MONOTONIC, &tEnd);
251 clock_gettime(CLOCK_REALTIME, &_tCreate);
253 clock_gettime(CLOCK_MONOTONIC, &_tCreate);
condition_variable_linux.cc 112 clock_gettime(CLOCK_REALTIME, &ts);
114 clock_gettime(CLOCK_MONOTONIC, &ts);
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 81 clock_gettime(CLOCK_MONOTONIC, &before);
89 clock_gettime(CLOCK_MONOTONIC, &after);
  /system/core/toolbox/
uptime.c 93 if (clock_gettime(CLOCK_MONOTONIC, &up_timespec) < 0) {
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 28 /* this is a small test for pthread_getcpuclockid() and clock_gettime() */
59 clock_gettime( clock, &ts );
60 fprintf(stderr, "thread %08lx: clock_gettime() returned %g nsecs\n", self, ts.tv_sec*1e9 + ts.tv_nsec);
  /system/extras/tests/lib/testUtil/
testUtil.c 269 clock_gettime(CLOCK_MONOTONIC, &start);
273 clock_gettime(CLOCK_MONOTONIC, &current);
294 clock_gettime(CLOCK_MONOTONIC, &start);
298 clock_gettime(CLOCK_MONOTONIC, &current);
  /system/extras/tests/pftest/
pftest.c 41 clock_gettime(CLOCK_MONOTONIC, &t);
  /external/dhcpcd/
common.c 152 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
159 if (clock_gettime(posix_clock, &ts) == 0) {
168 * This is crap though - why can't they implement clock_gettime?*/
  /external/qemu/distrib/sdl-1.2.12/src/timer/unix/
SDL_systimer.c 36 /* The clock_gettime provides monotonous time, so we should use it if
37 it's available. The clock_gettime function is behind ifdef
65 clock_gettime(CLOCK_MONOTONIC,&start);
76 clock_gettime(CLOCK_MONOTONIC,&now);
  /development/ndk/platforms/android-3/include/
time.h 100 extern int clock_gettime(clockid_t, struct timespec *);
  /development/ndk/platforms/android-8/include/
time.h 98 extern int clock_gettime(int, struct timespec *);
  /device/moto/stingray/sensors/
SensorBase.cpp 82 clock_gettime(CLOCK_MONOTONIC, &t);
  /device/samsung/crespo/libsensors/
SensorBase.cpp 87 clock_gettime(CLOCK_MONOTONIC, &t);

Completed in 677 milliseconds

1 2 3 4 5 6