Lines Matching defs:pResOut
1153 int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
1732 ** is returned, then non-zero or zero is written into *pResOut to indicate
1784 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
15121 SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut);
15142 SQLITE_PRIVATE int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut);
24979 SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){
24981 return id->pMethods->xCheckReservedLock(id, pResOut);
25105 int *pResOut
25108 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
35868 static int kvvfsCheckReservedLock(sqlite3_file*, int *pResOut);
36557 static int kvvfsCheckReservedLock(sqlite3_file *pProtoFile, int *pResOut){
36559 *pResOut = 0;
36662 int *pResOut
36666 *pResOut = sqlite3KvvfsMethods.xRead("local", "jrnl", 0, 0)>0;
36669 *pResOut = sqlite3KvvfsMethods.xRead("session", "jrnl", 0, 0)>0;
36672 *pResOut = sqlite3KvvfsMethods.xRead("local", "sz", 0, 0)>0;
36675 *pResOut = sqlite3KvvfsMethods.xRead("session", "sz", 0, 0)>0;
36678 *pResOut = 0;
36680 SQLITE_KV_LOG(("xAccess returns %d\n",*pResOut));
38330 ** file by this or any other process. If such a lock is held, set *pResOut
38331 ** to a non-zero value otherwise *pResOut is set to zero. The return value
38334 static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){
38371 *pResOut = reserved;
39004 static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){
39006 *pResOut = 0;
39058 ** file by this or any other process. If such a lock is held, set *pResOut
39059 ** to a non-zero value otherwise *pResOut is set to zero. The return value
39063 ** variation of CheckReservedLock(), *pResOut is set to true if any lock
39066 static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) {
39076 *pResOut = reserved;
39242 ** file by this or any other process. If such a lock is held, set *pResOut
39243 ** to a non-zero value otherwise *pResOut is set to zero. The return value
39246 static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){
39293 *pResOut = reserved;
39432 ** file by this or any other process. If such a lock is held, set *pResOut
39433 ** to a non-zero value otherwise *pResOut is set to zero. The return value
39436 static int semXCheckReservedLock(sqlite3_file *id, int *pResOut) {
39470 *pResOut = reserved;
39675 ** file by this or any other process. If such a lock is held, set *pResOut
39676 ** to a non-zero value otherwise *pResOut is set to zero. The return value
39679 static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){
39690 *pResOut = 1;
39720 *pResOut = reserved;
43317 int *pResOut /* Write result boolean here */
43321 assert( pResOut!=0 );
43329 *pResOut = 0==osStat(zPath, &buf) &&
43332 *pResOut = osAccess(zPath, W_OK|R_OK)==0;
44787 ** file by this or any other process. If such a lock is held, set *pResOut
44788 ** to a non-zero value otherwise *pResOut is set to zero. The return value
44791 static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) {
44798 return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut);
44800 pResOut=0;
48459 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
48464 OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile->h, pResOut));
48478 *pResOut = res;
48479 OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n",
48480 pFile->h, pResOut, *pResOut));
48551 static int winNolockCheckReservedLock(sqlite3_file *id, int *pResOut){
48553 UNUSED_PARAMETER(pResOut);
50080 int *pResOut /* OUT: Result */
50521 int *pResOut /* OUT: Result */
50530 OSTRACE(("ACCESS name=%s, flags=%x, pResOut=%p\n",
50531 zFilename, flags, pResOut));
50585 *pResOut = rc;
50586 OSTRACE(("ACCESS name=%s, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n",
50587 zFilename, pResOut, *pResOut));
51384 /* static int memdbCheckReservedLock(sqlite3_file*, int *pResOut);// not used */
51725 static int memdbCheckReservedLock(sqlite3_file *pFile, int *pResOut){
51726 *pResOut = 0;
51914 int *pResOut
51919 *pResOut = 0;
213630 static int rbuVfsCheckReservedLock(sqlite3_file *pFile, int *pResOut){
213632 return p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut);
213944 int *pResOut
213950 rc = pRealVfs->xAccess(pRealVfs, zPath, flags, pResOut);
213970 if( *pResOut ){
213975 *pResOut = (sz>0);