Home
last modified time | relevance | path

Searched refs:pDefault (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/test/
H A Ddbfuzz.c401 sqlite3_vfs *pDefault = sqlite3_vfs_find(0); in inmemVfsRegister() local
410 inmemVfs.xRandomness = pDefault->xRandomness; in inmemVfsRegister()
411 inmemVfs.xSleep = pDefault->xSleep; in inmemVfsRegister()
412 inmemVfs.xCurrentTimeInt64 = pDefault->xCurrentTimeInt64; in inmemVfsRegister()
H A Dfuzzcheck.c1536 sqlite3_vfs *pDefault = sqlite3_vfs_find(0); in inmemVfsRegister() local
1546 inmemVfs.xSleep = pDefault->xSleep; in inmemVfsRegister()
1547 inmemVfs.xCurrentTimeInt64 = pDefault->xCurrentTimeInt64; in inmemVfsRegister()
/sqlite-3.40.0/src/
H A Dos_win.c508 sqlite3_syscall_ptr pDefault; /* Default value */ member
1181 if( aSyscall[i].pDefault ){ in winSetSystemCall()
1182 aSyscall[i].pCurrent = aSyscall[i].pDefault; in winSetSystemCall()
1191 if( aSyscall[i].pDefault==0 ){ in winSetSystemCall()
1192 aSyscall[i].pDefault = aSyscall[i].pCurrent; in winSetSystemCall()
1195 if( pNewFunc==0 ) pNewFunc = aSyscall[i].pDefault; in winSetSystemCall()
H A Dos_unix.c387 sqlite3_syscall_ptr pDefault; /* Default value */ member
587 if( aSyscall[i].pDefault ){ in unixSetSystemCall()
588 aSyscall[i].pCurrent = aSyscall[i].pDefault; in unixSetSystemCall()
597 if( aSyscall[i].pDefault==0 ){ in unixSetSystemCall()
598 aSyscall[i].pDefault = aSyscall[i].pCurrent; in unixSetSystemCall()
601 if( pNewFunc==0 ) pNewFunc = aSyscall[i].pDefault; in unixSetSystemCall()