HomeSort by relevance Sort by last modified time
    Searched refs:ptv (Results 1 - 5 of 5) sorted by null

  /frameworks/base/libs/utils/
Timers.cpp 95 /*static*/ void DurationTimer::addToTimeval(struct timeval* ptv, long usec)
103 if (ptv->tv_usec >= 1000000) {
104 ptv->tv_sec += ptv->tv_usec / 1000000;
105 ptv->tv_usec %= 1000000;
108 ptv->tv_usec += usec % 1000000;
109 if (ptv->tv_usec >= 1000000) {
110 ptv->tv_usec -= 1000000;
111 ptv->tv_sec++;
113 ptv->tv_sec += usec / 1000000
    [all...]
  /development/simulator/app/
ported.cpp 36 int gettimeofday(struct timeval* ptv, struct timezone* tz)
49 ptv->tv_usec = (long) ((nsTime / 10LL) % 1000000LL);
50 ptv->tv_sec = (long) ((nsTime - 116444736000000000LL) / 10000000LL);
  /frameworks/base/include/utils/
Timers.h 124 static void addToTimeval(struct timeval* ptv, long usec);
  /hardware/ril/libril/
ril_event.cpp 350 struct timeval * ptv; local
360 ptv = NULL;
363 ptv = &tv;
366 n = select(nfds, &rfds, NULL, NULL, ptv);
  /dalvik/libcore/x-net/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 883 struct timeval *ptv; local
887 ptv = &tv;
889 ptv = NULL;
893 int result = select(max + 1, &rfds, &wfds, NULL, ptv);
    [all...]

Completed in 5311 milliseconds