Lines Matching defs:pResOut

1302   int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
1682 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
9791 SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut);
9810 SQLITE_PRIVATE int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut);
15190 SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){
15192 return id->pMethods->xCheckReservedLock(id, pResOut);
15288 int *pResOut
15291 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
24442 ** file by this or any other process. If such a lock is held, set *pResOut
24443 ** to a non-zero value otherwise *pResOut is set to zero. The return value
24446 static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){
24482 *pResOut = reserved;
25058 static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){
25060 *pResOut = 0;
25112 ** file by this or any other process. If such a lock is held, set *pResOut
25113 ** to a non-zero value otherwise *pResOut is set to zero. The return value
25117 ** variation of CheckReservedLock(), *pResOut is set to true if any lock
25120 static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) {
25140 *pResOut = reserved;
25312 ** file by this or any other process. If such a lock is held, set *pResOut
25313 ** to a non-zero value otherwise *pResOut is set to zero. The return value
25316 static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){
25365 *pResOut = reserved;
25504 ** file by this or any other process. If such a lock is held, set *pResOut
25505 ** to a non-zero value otherwise *pResOut is set to zero. The return value
25508 static int semCheckReservedLock(sqlite3_file *id, int *pResOut) {
25543 *pResOut = reserved;
25748 ** file by this or any other process. If such a lock is held, set *pResOut
25749 ** to a non-zero value otherwise *pResOut is set to zero. The return value
25752 static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){
25763 *pResOut = 1;
25794 *pResOut = reserved;
28937 int *pResOut /* Write result boolean here */
28956 *pResOut = (osAccess(zPath, amode)==0);
28957 if( flags==SQLITE_ACCESS_EXISTS && *pResOut ){
28960 *pResOut = 0;
30258 ** file by this or any other process. If such a lock is held, set *pResOut
30259 ** to a non-zero value otherwise *pResOut is set to zero. The return value
30262 static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) {
30269 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
30271 pResOut=0;
33449 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
33454 OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile->h, pResOut));
33468 *pResOut = rc;
33469 OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n",
33470 pFile->h, pResOut, *pResOut));
35097 int *pResOut /* OUT: Result */
35106 OSTRACE(("ACCESS name=%s, flags=%x, pResOut=%p\n",
35107 zFilename, flags, pResOut));
35161 *pResOut = rc;
35162 OSTRACE(("ACCESS name=%s, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n",
35163 zFilename, pResOut, *pResOut));