Lines Matching refs:pArg

1040   int (*xFileControl)(sqlite3_file*, int op, void *pArg);
5334 void *pArg,
5341 void *pArg,
5349 void *pArg,
7603 void *pArg; member
7625 void *pArg; member
12031 void *pArg; /* First arg to busy callback */ member
14418 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ argument
14420 pArg, 0, xFunc, 0, #zName, }
20178 SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ in sqlite3OsFileControl() argument
20194 return id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControl()
20196 SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){ in sqlite3OsFileControlHint() argument
20197 (void)id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControlHint()
24270 void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
24271 void *pArg,
24275 (void)pArg;
26928 void *pArg /* IN: Pointer to the SQLiteThread structure */
26930 SQLiteThread *p = (SQLiteThread *)pArg;
33599 static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){
33600 if( *pArg<0 ){
33601 *pArg = (pFile->ctrlFlags & mask)!=0;
33602 }else if( (*pArg)==0 ){
33615 static int unixFileControl(sqlite3_file *id, int op, void *pArg){
33619 *(int*)pArg = pFile->eFileLock;
33623 *(int*)pArg = pFile->lastErrno;
33627 pFile->szChunk = *(int *)pArg;
33633 rc = fcntlSizeHint(pFile, *(i64 *)pArg);
33638 unixModeBit(pFile, UNIXFILE_PERSIST_WAL, (int*)pArg);
33642 unixModeBit(pFile, UNIXFILE_PSOW, (int*)pArg);
33646 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
33653 *(char**)pArg = zTFile;
33658 *(int*)pArg = fileHasMoved(pFile);
33663 i64 newLimit = *(i64*)pArg;
33668 *(i64*)pArg = pFile->mmapSizeMax;
33693 return proxyFileControl(id,op,pArg);
37139 static int proxyFileControl(sqlite3_file *id, int op, void *pArg){
37147 *(const char **)pArg = pCtx->lockProxyPath;
37149 *(const char **)pArg = ":auto: (not held)";
37152 *(const char **)pArg = NULL;
37160 if( pArg==NULL || (const char *)pArg==0 ){
37172 const char *proxyPath = (const char *)pArg;
37176 if( !strcmp(pArg, ":auto:")
41104 static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){
41105 if( *pArg<0 ){
41106 *pArg = (pFile->ctrlFlags & mask)!=0;
41107 }else if( (*pArg)==0 ){
41122 static int winFileControl(sqlite3_file *id, int op, void *pArg){
41124 OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg));
41127 *(int*)pArg = pFile->locktype;
41132 *(int*)pArg = (int)pFile->lastErrno;
41137 pFile->szChunk = *(int *)pArg;
41146 sqlite3_int64 newSz = *(sqlite3_int64*)pArg;
41160 winModeBit(pFile, WINFILE_PERSIST_WAL, (int*)pArg);
41165 winModeBit(pFile, WINFILE_PSOW, (int*)pArg);
41170 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
41175 int *a = (int*)pArg;
41190 LPHANDLE phFile = (LPHANDLE)pArg;
41197 LPHANDLE phFile = (LPHANDLE)pArg;
41210 *(char**)pArg = zTFile;
41217 i64 newLimit = *(i64*)pArg;
41222 *(i64*)pArg = pFile->mmapSizeMax;
44346 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg);
44351 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg);
53081 void *pArg = (void*)zMaster;
53082 rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_SYNC, pArg);
61122 static int btreeInvokeBusyHandler(void *pArg){
61123 BtShared *pBt = (BtShared*)pArg;
99263 void *pArg
99270 db->pAuthArg = pArg;
106854 Mem *pArg = (Mem *)argv[0];
106876 cmp = sqlite3MemCompare(pBest, pArg, pColl);
106878 sqlite3VdbeMemCopy(pBest, pArg);
106884 sqlite3VdbeMemCopy(pBest, pArg);
110868 void *pArg, /* First argument to xCallback() */
110933 if( xCallback(pArg, nCol, azVals, azCols) ){
122026 static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
122027 TabResult *p = (TabResult*)pArg; /* Result accumulator */
125007 Token *pArg = &pParse->sArg;
125008 if( pArg->z==0 ){
125009 pArg->z = p->z;
125010 pArg->n = p->n;
125012 assert(pArg->z <= p->z);
125013 pArg->n = (int)(&p->z[p->n] - pArg->z);
125573 void *pArg = 0;
125600 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xSFunc, &pArg);
125618 pNew->pUserData = pArg;
141407 rc = p->xFunc(p->pArg, p->nBusy);
141423 void *pArg
141430 db->busyHandler.pArg = pArg;
141447 void *pArg
141459 db->pProgressArg = pArg;
141632 FuncDestructor *pArg = 0;
141641 pArg = (FuncDestructor *)sqlite3DbMallocZero(db, sizeof(FuncDestructor));
141642 if( !pArg ){
141646 pArg->xDestroy = xDestroy;
141647 pArg->pUserData = p;
141649 rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, pArg);
141650 if( pArg && pArg->nRef==0 ){
141653 sqlite3DbFree(db, pArg);
141735 SQLITE_API void *sqlite3_trace(sqlite3 *db, void(*xTrace)(void*,const char*), void *pArg){
141748 db->pTraceArg = pArg;
141760 void *pArg /* Context */
141772 db->pTraceArg = pArg;
141789 void *pArg
141802 db->pProfileArg = pArg;
141817 void *pArg /* Argument to the function */
141830 db->pCommitArg = pArg;
141842 void *pArg /* Argument to the function */
141855 db->pUpdateArg = pArg;
141867 void *pArg /* Argument to the function */
141880 db->pRollbackArg = pArg;
141894 void *pArg /* First callback argument */
141900 db->pPreUpdateArg = pArg;
141963 void *pArg /* First argument passed to xCallback() */
141976 db->pWalArg = pArg;
142998 void *pArg = sqlite3GlobalConfig.pSqllogArg;
142999 sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0);
143417 SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
143435 *(sqlite3_file**)pArg = fd;
143438 *(sqlite3_vfs**)pArg = sqlite3PagerVfs(pPager);
143441 *(sqlite3_file**)pArg = sqlite3PagerJrnlFile(pPager);
143444 rc = sqlite3OsFileControl(fd, op, pArg);
144155 void *pArg
144173 xNotify(&pArg, 1);
144183 db->pUnlockArg = pArg;
167146 static void rtreeMatchArgFree(void *pArg){
167148 RtreeMatchArg *p = (RtreeMatchArg*)pArg;
172889 static int rbuVfsFileControl(sqlite3_file *pFile, int op, void *pArg){
172898 sqlite3rbu *pRbu = (sqlite3rbu*)pArg;
172903 rc = xControl(p->pReal, op, pArg);
172923 sqlite3rbu *pRbu = (sqlite3rbu*)pArg;
172929 rc = xControl(p->pReal, op, pArg);
172932 char *zIn = *(char**)pArg;
172934 *(char**)pArg = zOut;
173322 void *pArg,
173326 return pRealVfs->xDlSym(pRealVfs, pArg, zSym);