Home | History | Annotate | Download | only in dist

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
15435 Sleep(1);
21192 ** Sleep for a little while. Return the amount of time slept.
21193 ** The argument is the number of microseconds we want to sleep.
21194 ** The return value is the number of microseconds of sleep actually
25780 ** Sleep for a little while. Return the amount of time slept.
25781 ** The argument is the number of microseconds we want to sleep.
25782 ** The return value is the number of microseconds of sleep actually
25802 sleep(seconds);
27951 }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (Sleep(100), 1) );
27962 Sleep(100); /* Wait a little before trying again */
28275 Sleep(1);
28805 && (Sleep(100), 1) );
28817 && (Sleep(100), 1) );
29105 ** Sleep for a little while. Return the amount of time slept.
29108 Sleep((microsec+999)/1000);
76157 int (*sleep)(int);
76336 #define sqlite3_sleep sqlite3_api->sleep
97574 ** Sleep for a little while. Return the amount of time slept.