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

  /frameworks/native/libs/utils/
Timers.cpp 113 /*static*/ void DurationTimer::addToTimeval(struct timeval* ptv, long usec)
121 if (ptv->tv_usec >= 1000000) {
122 ptv->tv_sec += ptv->tv_usec / 1000000;
123 ptv->tv_usec %= 1000000;
126 ptv->tv_usec += usec % 1000000;
127 if (ptv->tv_usec >= 1000000) {
128 ptv->tv_usec -= 1000000;
129 ptv->tv_sec++;
131 ptv->tv_sec += usec / 1000000
    [all...]
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_uart.c 301 struct timeval *ptv; local
321 ptv = &tv;
325 ptv = &tv;
327 ptv = NULL;
334 if (ptv) {
336 ptv = &tv;
339 ret = select(gComPortContext.nHandle + 1, &rfds, NULL, NULL, ptv);
  /frameworks/native/include/utils/
Timers.h 134 static void addToTimeval(struct timeval* ptv, long usec);
  /hardware/ril/libril/
ril_event.cpp 351 struct timeval * ptv; local
361 ptv = NULL;
364 ptv = &tv;
367 n = select(nfds, &rfds, NULL, NULL, ptv);
  /external/chromium/third_party/libevent/
evbuffer.c 60 struct timeval tv, *ptv = NULL; local
65 ptv = &tv;
68 return (event_add(ev, ptv));
event_tagging.c 426 struct timeval *ptv)
437 ptv->tv_sec = integer;
440 ptv->tv_usec = integer;
event.h     [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 2211 timeval* ptv; local
    [all...]

Completed in 147 milliseconds