Lines Matching full:sleep
1316 ** The xSleep() method causes the calling thread to sleep for at
2103 ** will sleep multiple times until at least "ms" milliseconds of sleeping
4219 ** ^If the operating system does not support sleep requests with
4221 ** the nearest second. ^The number of milliseconds of sleep actually
15430 Sleep(1);
21187 ** Sleep for a little while. Return the amount of time slept.
21188 ** The argument is the number of microseconds we want to sleep.
21189 ** The return value is the number of microseconds of sleep actually
25775 ** Sleep for a little while. Return the amount of time slept.
25776 ** The argument is the number of microseconds we want to sleep.
25777 ** The return value is the number of microseconds of sleep actually
25797 sleep(seconds);
27946 }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (Sleep(100), 1) );
27957 Sleep(100); /* Wait a little before trying again */
28270 Sleep(1);
28800 && (Sleep(100), 1) );
28812 && (Sleep(100), 1) );
29100 ** Sleep for a little while. Return the amount of time slept.
29103 Sleep((microsec+999)/1000);
76146 int (*sleep)(int);
76325 #define sqlite3_sleep sqlite3_api->sleep
97540 ** Sleep for a little while. Return the amount of time slept.