Searched refs:clock (Results 1 - 7 of 7) sorted by relevance

/bionic/libstdc++/include/
H A Dctime50 using ::clock;
/bionic/libc/unistd/
H A Dtime.c65 // return elapsed CPU time in clock ticks, since start of program execution
68 clock(void) function
/bionic/libc/bionic/
H A Dtime64.c60 # define LOCALTIME_R(clock, result) localtime_r(clock, result)
62 # define LOCALTIME_R(clock, result) fake_localtime_r(clock, result)
65 # define GMTIME_R(clock, result) gmtime_r(clock, result)
67 # define GMTIME_R(clock, result) fake_gmtime_r(clock, result)
432 struct tm * fake_localtime_r(const time_t *clock, struct tm *result) { argument
433 const struct tm *static_result = localtime(clock);
450 fake_gmtime_r(const time_t *clock, struct tm *result) argument
[all...]
H A Dpthread-timers.c100 clockid_t clock; member in struct:thr_timer
353 // Check that the clock id is supported by the kernel.
382 timer->clock = clock_id;
449 clock_gettime( timer->clock, &now );
521 clock_gettime( timer->clock, &now );
588 clock_gettime(timer->clock, &now);
H A Dpthread.c800 * according to 'clock'. Returns -1 if abstime already expired, or 0 otherwise.
803 __timespec_to_absolute(struct timespec* ts, const struct timespec* abstime, clockid_t clock) argument
805 clock_gettime(clock, ts);
818 /* initialize 'abstime' to the current time according to 'clock' plus 'msecs'
822 __timespec_to_relative_msec(struct timespec* abstime, unsigned msecs, clockid_t clock) argument
824 clock_gettime(clock, abstime);
836 clockid_t clock = CLOCK_MONOTONIC; local
842 __timespec_to_relative_msec(&abstime, msecs, clock);
866 if (__timespec_to_absolute(&ts, &abstime, clock) < 0)
909 if (__timespec_to_absolute(&ts, &abstime, clock) <
1124 __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t * mutex, const struct timespec *abstime, clockid_t clock) argument
[all...]
/bionic/libc/kernel/common/linux/mmc/
H A Dhost.h24 unsigned int clock; member in struct:mmc_ios
/bionic/libc/include/
H A Dtime.h94 extern clock_t clock(void);
96 /* BIONIC: extra linux clock goodies */

Completed in 323 milliseconds