Home
last modified time | relevance | path

Searched refs:timespec (Results 1 – 25 of 161) sorted by relevance

1234567

/external/kernel-headers/original/linux/
Dtime.h12 struct timespec { struct
39 static inline int timespec_equal(struct timespec *a, struct timespec *b) in timespec_equal()
49 static inline int timespec_compare(struct timespec *lhs, struct timespec *rhs) in timespec_compare()
71 extern void set_normalized_timespec(struct timespec *ts, time_t sec, long nsec);
76 static inline struct timespec timespec_sub(struct timespec lhs, in timespec_sub()
77 struct timespec rhs) in timespec_sub()
79 struct timespec ts_delta; in timespec_sub()
91 extern struct timespec xtime;
92 extern struct timespec wall_to_monotonic;
102 struct timespec current_kernel_time(void);
[all …]
Dandroid_alarm.h42 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec) // set al…
43 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
45 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
Dktime.h100 static inline ktime_t timespec_to_ktime(struct timespec ts) in timespec_to_ktime()
202 static inline ktime_t timespec_to_ktime(const struct timespec ts) in timespec_to_ktime()
226 static inline struct timespec ktime_to_timespec(const ktime_t kt) in ktime_to_timespec()
228 return (struct timespec) { .tv_sec = (time_t) kt.tv.sec, in ktime_to_timespec()
268 extern void ktime_get_ts(struct timespec *ts);
Dsmb.h88 struct timespec f_atime;
89 struct timespec f_mtime;
90 struct timespec f_ctime;
Dstat.h68 struct timespec atime;
69 struct timespec mtime;
70 struct timespec ctime;
Dcoda.h89 struct timespec { struct
116 struct timespec { struct
249 struct timespec va_atime; /* time of last access */
250 struct timespec va_mtime; /* time of last modification */
251 struct timespec va_ctime; /* time file changed */
Dnfs_xdr.h33 struct timespec pre_mtime; /* pre_op_attr.mtime */
34 struct timespec pre_ctime; /* pre_op_attr.ctime */
53 struct timespec atime;
54 struct timespec mtime;
55 struct timespec ctime;
404 struct timespec guardtime;
/external/skia/bench/
DBenchSysTimer_posix.cpp13 static double intervalInMSec(const timespec start_clock in intervalInMSec()
14 , const timespec end_clock) in intervalInMSec()
30 timespec none = {0, 0}; in startWall()
36 timespec none = {0, 0}; in startCpu()
42 timespec end_cpu; in endCpu()
44 timespec none = {0, 0}; in endCpu()
51 timespec end_wall; in endWall()
53 timespec none = {0, 0}; in endWall()
DBenchSysTimer_posix.h21 timespec fCpu;
22 timespec fWall;
/external/openssh/openbsd-compat/
Dbsd-misc.h72 struct timespec { struct
77 int nanosleep(const struct timespec *, struct timespec *); argument
/external/llvm/test/Linker/
D2011-08-22-ResolveAlias.ll6 %struct.timespec = type { i64, i64 }
22 …d_mutex_tPK8timespec = alias weak i32 (%union.pthread_mutex_t*, %struct.timespec*)* @pthread_mutex…
29 …lias weak i32 (%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)* @pthread_cond_…
61 declare extern_weak i32 @pthread_mutex_timedlock(%union.pthread_mutex_t*, %struct.timespec*)
75 …eak i32 @pthread_cond_timedwait(%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)
D2011-08-22-ResolveAlias2.ll8 %struct.timespec = type { i64, i64 }
25 …d_mutex_tPK8timespec = alias weak i32 (%union.pthread_mutex_t*, %struct.timespec*)* @pthread_mutex…
32 …lias weak i32 (%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)* @pthread_cond_…
66 declare extern_weak i32 @pthread_mutex_timedlock(%union.pthread_mutex_t*, %struct.timespec*)
80 …eak i32 @pthread_cond_timedwait(%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)
/external/stlport/stlport/stl/
D_threads.c68 extern "C" int __nanosleep(const struct timespec*, struct timespec*);
108 timespec __ts; in _S_nsec_sleep()
/external/kernel-headers/original/linux/nfsd/
Dnfsfh.h149 struct timespec fh_pre_mtime; /* mtime before oper */
150 struct timespec fh_pre_ctime; /* ctime before oper */
161 struct timespec fh_post_atime; /* i_atime */
162 struct timespec fh_post_mtime; /* i_mtime */
163 struct timespec fh_post_ctime; /* i_ctime */
/external/webrtc/src/system_wrappers/source/
Devent_posix.h48 EventTypeWrapper Wait(timespec& tPulse);
57 timespec _tCreate;
Devent_posix.cc138 timespec tEnd; in Wait()
181 EventTypeWrapper EventPosix::Wait(timespec& tPulse) in Wait()
266 timespec tEnd; in Process()
/external/qemu/distrib/sdl-1.2.15/src/timer/unix/
DSDL_systimer.c55 static struct timespec start;
75 struct timespec now; in SDL_GetTicks()
99 struct timespec elapsed, tv; in SDL_Delay()
/external/eigen/bench/btl/generic_bench/timers/
Dportable_timer.hh111 timespec ts; in start()
119 timespec ts; in stop()
/external/kernel-headers/original/sound/
Dasound.h395 struct timespec trigger_tstamp; /* time when stream was started/stopped/paused */
396 struct timespec tstamp; /* reference timestamp */
411 struct timespec tstamp; /* Timestamp */
530 struct timespec tstamp; /* Timestamp */
642 struct timespec tstamp; /* Timestamp - last update */
692 struct timespec tstamp;
831 struct timespec tstamp;
832 unsigned char reserved[128-sizeof(struct timespec)];
/external/chromium/base/
Dtime_posix.cc17 struct timespec TimeDelta::ToTimeSpec() const { in ToTimeSpec()
24 struct timespec result = in ToTimeSpec()
171 struct timespec ts; in Now()
/external/qemu/
Dqemu-thread.c60 static void timespec_add_ms(struct timespec *ts, uint64_t msecs) in timespec_add_ms()
73 struct timespec ts; in qemu_mutex_timedlock()
140 struct timespec ts; in qemu_cond_timedwait()
/external/dbus/dbus/
Ddbus-sysdeps-pthread.c267 struct timespec end_time; in _dbus_pthread_condvar_wait_timeout()
277 struct timespec monotonic_timer; in _dbus_pthread_condvar_wait_timeout()
362 struct timespec dummy; in check_monotonic_clock()
/external/eigen/bench/
DBenchTimer.h128 timespec ts; in getCpuTime()
143 timespec ts; in getRealTime()
/external/libnfc-nxp/Linux_x86/
DphDal4Nfc_uart.c267 static struct timeval timeval_remaining(struct timespec timeout) { in timeval_remaining()
268 struct timespec now; in timeval_remaining()
302 struct timespec timeout; in phDal4Nfc_uart_read()
/external/stressapptest/src/
Dsattypes.h158 timespec req; in sat_usleep()
167 timespec req; in sat_sleep()

1234567