/frameworks/native/libs/utils/ |
Timers.cpp | 114 /*static*/ void DurationTimer::addToTimeval(struct timeval* ptv, long usec) 122 if (ptv->tv_usec >= 1000000) { 123 ptv->tv_sec += ptv->tv_usec / 1000000; 124 ptv->tv_usec %= 1000000; 127 ptv->tv_usec += usec % 1000000; 128 if (ptv->tv_usec >= 1000000) { 129 ptv->tv_usec -= 1000000; 130 ptv->tv_sec++; 132 ptv->tv_sec += usec / 1000000 [all...] |
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/ |
Connection.cpp | 112 struct timeval *ptv = NULL; local 122 ptv = &tv; 127 ret = select(socketDescriptor + 1, &readfds, NULL, NULL, ptv); 182 struct timeval *ptv = NULL; local 191 ptv = &tv; 196 ret = select(socketDescriptor + 1, &readfds, NULL, NULL, ptv);
|
/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 | 135 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 | 2415 timeval* ptv; local [all...] |