Lines Matching defs:microseconds
1550 ** least the number of microseconds given. ^The xCurrentTime()
1592 int (*xSleep)(sqlite3_vfs*, int microseconds);
24651 ** The argument is the number of microseconds we want to sleep.
24652 ** The return value is the number of microseconds of sleep actually
30538 ** The argument is the number of microseconds we want to sleep.
30539 ** The return value is the number of microseconds of sleep actually
30544 static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){
30548 sp.tv_sec = microseconds / 1000000;
30549 sp.tv_nsec = (microseconds % 1000000) * 1000;
30552 return microseconds;
30554 usleep(microseconds);
30556 return microseconds;
30558 int seconds = (microseconds+999999)/1000000;
47460 int nDelay = 1; /* Pause time in microseconds */
115158 ** API uses microseconds. Hence the 1000's.