Searched defs:amt (Results 1 - 4 of 4) sorted by relevance

/system/extras/tests/lib/testUtil/
H A DtestUtil.c68 struct timespec double2ts(double amt) argument
72 rv.tv_sec = floor(amt);
73 rv.tv_nsec = (amt - rv.tv_sec) * nSecsPerSec;
74 // TODO: Handle cases where amt is negative
84 struct timeval double2tv(double amt) argument
88 rv.tv_sec = floor(amt);
89 rv.tv_usec = (amt - rv.tv_sec) * uSecsPerSec;
90 // TODO: Handle cases where amt is negative
259 // Delays for the number of seconds specified by amt or a greater amount.
260 // The amt variabl
263 testDelay(float amt) argument
289 testDelaySpin(float amt) argument
[all...]
/system/extras/tests/wifi/stress/
H A DwifiLoadScanAssoc.c453 float fract, biasedFract, amt; local
464 amt = delayMin + ((delayMax - delayMin) * biasedFract);
467 testDelay(amt);
/system/core/debuggerd/
H A Ddebuggerd.c62 ssize_t amt; local
67 amt = write(fd, string, len);
69 return amt >= 0 ? 0 : -errno;
/system/core/adb/
H A Dfile_sync_client.c317 int amt; local
342 amt = adb_read(lfd, file_buffer, size);
343 if (amt != size) {

Completed in 126 milliseconds