Lines Matching refs:delay
1253 ** file write, and file delete operations up to 10 times, with a delay
1254 ** of 25 milliseconds before the first retry and with the delay increasing
1256 ** opcode allows these two values (10 retries and 25 milliseconds of delay)
1260 ** integer is the delay. If either integer is negative, then the setting
47185 ** antivirus software. Also the initial delay before the first retry.
47186 ** The delay increases linearly with each retry.
50405 ** problem, we delay 100 milliseconds and try to delete again. Up
60510 ** In this case we accept the default page size and delay actually
66100 ** calls to sqlite3OsSleep() have a delay of 1 microsecond. Really this
66101 ** is more of a scheduler yield than an actual delay. But on the 10th
66103 ** so that on the 100th (and last) RETRY we delay for 323 milliseconds.
66104 ** The total delay time before giving up is less than 10 seconds.
96858 ** seek operation now, without further delay. If the cursor seek has
175101 int delay, prior;
175105 delay = delays[count];
175108 delay = delays[NDELAY-1];
175109 prior = totals[NDELAY-1] + delay*(count-(NDELAY-1));
175111 if( prior + delay > tmout ){
175112 delay = tmout - prior;
175113 if( delay<=0 ) return 0;
175115 sqlite3OsSleep(db->pVfs, delay*1000);