Lines Matching defs:pResOut

1240   int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
1521 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
9185 SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut);
9200 SQLITE_PRIVATE int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut);
14423 SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){
14425 return id->pMethods->xCheckReservedLock(id, pResOut);
14484 int *pResOut
14487 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
25790 ** file by this or any other process. If such a lock is held, set *pResOut
25791 ** to a non-zero value otherwise *pResOut is set to zero. The return value
25794 static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){
25830 *pResOut = reserved;
26413 static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){
26415 *pResOut = 0;
26467 ** file by this or any other process. If such a lock is held, set *pResOut
26468 ** to a non-zero value otherwise *pResOut is set to zero. The return value
26472 ** variation of CheckReservedLock(), *pResOut is set to true if any lock
26475 static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) {
26495 *pResOut = reserved;
26666 ** file by this or any other process. If such a lock is held, set *pResOut
26667 ** to a non-zero value otherwise *pResOut is set to zero. The return value
26670 static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){
26719 *pResOut = reserved;
26856 ** file by this or any other process. If such a lock is held, set *pResOut
26857 ** to a non-zero value otherwise *pResOut is set to zero. The return value
26860 static int semCheckReservedLock(sqlite3_file *id, int *pResOut) {
26895 *pResOut = reserved;
27100 ** file by this or any other process. If such a lock is held, set *pResOut
27101 ** to a non-zero value otherwise *pResOut is set to zero. The return value
27104 static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){
27115 *pResOut = 1;
27146 *pResOut = reserved;
29784 int *pResOut /* Write result boolean here */
29803 *pResOut = (osAccess(zPath, amode)==0);
29804 if( flags==SQLITE_ACCESS_EXISTS && *pResOut ){
29807 *pResOut = 0;
31101 ** file by this or any other process. If such a lock is held, set *pResOut
31102 ** to a non-zero value otherwise *pResOut is set to zero. The return value
31105 static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) {
31112 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
31114 pResOut=0;
33094 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
33112 *pResOut = rc;
34285 int *pResOut /* OUT: Result */
34347 *pResOut = rc;