Home | History | Annotate | Download | only in dist

Lines Matching full:microseconds

1421 ** least the number of microseconds given.  ^The xCurrentTime()
1450 int (*xSleep)(sqlite3_vfs*, int microseconds);
22695 ** The argument is the number of microseconds we want to sleep.
22696 ** The return value is the number of microseconds of sleep actually
28048 ** The argument is the number of microseconds we want to sleep.
28049 ** The return value is the number of microseconds of sleep actually
28054 static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){
28058 sp.tv_sec = microseconds / 1000000;
28059 sp.tv_nsec = (microseconds % 1000000) * 1000;
28062 return microseconds;
28064 usleep(microseconds);
28066 return microseconds;
28068 int seconds = (microseconds+999999)/1000000;
43520 int nDelay = 1; /* Pause time in microseconds */
107154 ** API uses microseconds. Hence the 1000's.