Home
last modified time | relevance | path

Searched refs:bPersist (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest_mem.c59 int bPersist; member
118 assert( pTm->bPersist==0 || pTm->bPersist==1 ); in tmMalloc()
124 pTm->nCountdown = pTm->bPersist; in tmMalloc()
231 int bPersist, in tmMallocOom() argument
236 assert( bPersist==0 || bPersist==1 ); in tmMallocOom()
238 pTm->bPersist = bPersist; in tmMallocOom()
398 int bPersist, in testMallocOom() argument
403 tmMallocOom(pTm, nCountdown, bPersist, xHook, pHookCtx); in testMallocOom()
/sqlite-3.40.0/test/
H A Dioerr2.test90 foreach bPersist [list 0 1] {
96 set ::sqlite_io_error_persist $bPersist
100 check_db ioerr2-3.$bPersist.$::N
103 foreach bPersist [list 0 1] {
107 set ::sqlite_io_error_persist $bPersist
111 check_db ioerr2-4.[expr {$bPersist+2}].$::N
H A Dbackup_ioerr.test146 foreach bPersist {0 1} {
176 set ::sqlite_io_error_persist $bPersist
/sqlite-3.40.0/src/
H A Dtest_syscall.c98 int bPersist; /* 1 for persistent errors, 0 for transient */ member
183 if( gSyscall.nCount==0 || (gSyscall.nFail && gSyscall.bPersist) ){ in tsIsFail()
551 int bPersist = 0; in test_syscall_fault() local
560 || Tcl_GetBooleanFromObj(interp, objv[3], &bPersist) in test_syscall_fault()
568 gSyscall.bPersist = bPersist; in test_syscall_fault()
H A Dwal.c2267 int bPersist = -1; in sqlite3WalClose() local
2269 pWal->pDbFd, SQLITE_FCNTL_PERSIST_WAL, &bPersist in sqlite3WalClose()
2271 if( bPersist!=1 ){ in sqlite3WalClose()
H A Dtest1.c6467 int bPersist; in file_control_persist_wal() local
6478 if( Tcl_GetIntFromObj(interp, objv[2], &bPersist) ) return TCL_ERROR; in file_control_persist_wal()
6479 rc = sqlite3_file_control(db, NULL, SQLITE_FCNTL_PERSIST_WAL, (void*)&bPersist); in file_control_persist_wal()
6480 sqlite3_snprintf(sizeof(z), z, "%d %d", rc, bPersist); in file_control_persist_wal()