Lines Matching defs:pAppData
1786 void *pAppData; /* Pointer to application-specific data */
2062 ** by xInit. The pAppData pointer is used as the only parameter to
2088 void *pAppData; /* Argument to xInit() and xShutdown() */
30385 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData);
30404 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData);
37476 0, /* pAppData */
43872 ** sqlite3_io_methods object for a particular database file. The pAppData
43888 ** A pointer to the F pointer is used as the pAppData value for VFS
43889 ** objects. We have to do this instead of letting pAppData point
44207 pLockingStyle = (**(finder_type*)pVfs->pAppData)(zFilename, pNew);
45642 dummyVfs.pAppData = (void*)&autolockIoFinder;
46516 ** The name of the VFS is NAME. The pAppData is a pointer to a pointer
46517 ** to the "finder" function. (pAppData is a pointer to a pointer because
46540 (void*)&FINDER, /* pAppData */ \
46944 ** The winVfsAppData structure is used for the pAppData member for all of the
46950 void *pAppData; /* The extra pAppData, if any. */
47114 static int winMemInit(void *pAppData);
47115 static void winMemShutdown(void *pAppData);
48223 static int winMemInit(void *pAppData){
48224 winMemData *pWinMemData = (winMemData *)pAppData;
48272 static void winMemShutdown(void *pAppData){
48273 winMemData *pWinMemData = (winMemData *)pAppData;
49338 winVfsAppData *pAppData = (winVfsAppData*)pFile->pVfs->pAppData;
49339 if( pAppData==NULL || !pAppData->bNoLock ){
51304 0, /* pAppData */
51310 0, /* pAppData */
51689 winVfsAppData *pAppData;
51936 pAppData = (winVfsAppData*)pVfs->pAppData;
51941 && ((pAppData==NULL) || !pAppData->bNoLock)
51960 id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod;
52719 &winAppData, /* pAppData */
52744 &winAppData, /* pAppData */
52769 &winNolockAppData, /* pAppData */
52794 &winNolockAppData, /* pAppData */
52897 #define ORIGVFS(p) ((sqlite3_vfs*)((p)->pAppData))
53008 0, /* pAppData (set when registered) */
53792 memdb_vfs.pAppData = pLower;
223453 0, /* pAppData */