• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/sqlite3/

Lines Matching defs:milliseconds

1959 ** of 25 milliseconds before the first retry and with the delay increasing
1960 ** by an additional 25 milliseconds with each subsequent retry. This
1961 ** opcode allows these two values (10 retries and 25 milliseconds of delay)
2157 ** to block for up to M milliseconds before failing when attempting to
2412 ** Day Number multiplied by 86400000 (the number of milliseconds in
3742 ** will sleep multiple times until at least "ms" milliseconds of sleeping
3743 ** have accumulated. ^After at least "ms" milliseconds of sleeping,
7042 ** for at least a number of milliseconds specified in its parameter.
7046 ** the nearest second. The number of milliseconds of sleep actually
22537 ** Compute the difference (in milliseconds) between localtime and UTC
27326 SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds); /* os_win.c */
35418 ** value is set, then it is the number of milliseconds to wait before
40540 ** other words, write into *piNow the number of milliseconds since the Julian
43484 ** milliseconds. This is equivalent to the Win32 Sleep() interface.
43490 SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds){
43497 osWaitForSingleObjectEx(sleepObj, milliseconds, FALSE);
43499 osSleep(milliseconds);
44760 ** the close fails, we pause for 100 milliseconds and try again. As
47413 ** problem, we delay 100 milliseconds and try to delete again. Up
48012 ** other words, write into *piNow the number of milliseconds since the Julian
62491 ** so that on the 100th (and last) RETRY we delay for 323 milliseconds.
165693 ** an integer number of milliseconds passed in as the first
165819 ** specified number of milliseconds before returning 0.
167852 /* This function works in milliseconds, but the underlying OsSleep()