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

/bind-9.6-ESV-R11/lib/dns/tests/
H A Ddnstest.c281 * Sleep for 'usec' microseconds.
284 dns_test_nap(isc_uint32_t usec) { argument
288 ts.tv_sec = usec / 1000000;
289 ts.tv_nsec = (usec % 1000000) * 1000;
292 usleep(usec);
298 sleep((usec / 1000000) + 1);
H A Ddnstest.h77 dns_test_nap(isc_uint32_t usec);
/bind-9.6-ESV-R11/bin/tests/
H A Ddb_test.c929 isc_uint64_t usec; local
933 usec = isc_time_microdiff(&finish, &start);
936 (unsigned long)(usec / 1000000),
937 (unsigned long)(usec % 1000000));

Completed in 2559 milliseconds