Searched refs:abstime (Results 1 - 3 of 3) sorted by relevance

/system/nfc/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c616 struct timespec abstime = {0, 0}; local
665 // abstime.tv_sec = currSysTime.time;
666 // abstime.tv_nsec = NANOSEC_PER_MILLISEC *
668 clock_gettime(CLOCK_MONOTONIC, &abstime);
673 abstime.tv_nsec += nano_sec;
674 if (abstime.tv_nsec > NSEC_PER_SEC) {
675 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
676 abstime.tv_nsec = abstime
[all...]
/system/nfc/src/gki/ulinux/
H A Dgki_ulinux.c582 struct timespec abstime = {0, 0}; local
632 // abstime.tv_sec = currSysTime.time;
633 // abstime.tv_nsec = NANOSEC_PER_MILLISEC *
635 clock_gettime(CLOCK_MONOTONIC, &abstime);
640 abstime.tv_nsec += nano_sec;
641 if (abstime.tv_nsec > NSEC_PER_SEC) {
642 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
643 abstime.tv_nsec = abstime
[all...]
/system/core/libutils/
H A DThreads.cpp452 status_t wait(WinCondition* condState, HANDLE hMutex, nsecs_t* abstime)
462 if (abstime) {
463 nsecs_t reltime = *abstime - systemTime();

Completed in 167 milliseconds