Home | History | Annotate | Download | only in dist

Lines Matching refs:pAppData

1581   void *pAppData;          /* Pointer to application-specific data */
1851 ** by xInit. The pAppData pointer is used as the only parameter to
1877 void *pAppData; /* Argument to xInit() and xShutdown() */
18778 return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData);
18795 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData);
24776 0, /* pAppData */
29356 ** sqlite3_io_methods object for a particular database file. The pAppData
29372 ** A pointer to the F pointer is used as the pAppData value for VFS
29373 ** objects. We have to do this instead of letting pAppData point
29659 || pVfs->pAppData==(void*)&autolockIoFinder );
29691 pLockingStyle = (**(finder_type*)pVfs->pAppData)(zFilename, pNew);
30966 dummyVfs.pAppData = (void*)&autolockIoFinder;
31833 ** The name of the VFS is NAME. The pAppData is a pointer to a pointer
31834 ** to the "finder" function. (pAppData is a pointer to a pointer because
31857 (void*)&FINDER, /* pAppData */ \
32288 static int winMemInit(void *pAppData);
32289 static void winMemShutdown(void *pAppData);
32973 static int winMemInit(void *pAppData){
32974 winMemData *pWinMemData = (winMemData *)pAppData;
33002 static void winMemShutdown(void *pAppData){
33003 winMemData *pWinMemData = (winMemData *)pAppData;
35800 0, /* pAppData */