Lines Matching refs:pArg

957   int (*xFileControl)(sqlite3_file*, int op, void *pArg);
4990 void *pArg,
4997 void *pArg,
5005 void *pArg,
7194 void *pArg; member
7216 void *pArg; member
9847 void *pArg; /* First arg to busy callback */ member
11993 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ argument
11995 pArg, 0, xFunc, 0, 0, #zName, 0, 0}
17334 SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ in sqlite3OsFileControl() argument
17350 return id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControl()
17352 SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){ in sqlite3OsFileControlHint() argument
17353 (void)id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControlHint()
21426 void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
21427 void *pArg,
21431 (void)pArg;
23892 void *pArg /* IN: Pointer to the SQLiteThread structure */
23894 SQLiteThread *p = (SQLiteThread *)pArg;
30398 static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){
30399 if( *pArg<0 ){
30400 *pArg = (pFile->ctrlFlags & mask)!=0;
30401 }else if( (*pArg)==0 ){
30414 static int unixFileControl(sqlite3_file *id, int op, void *pArg){
30422 *(int*)pArg = pFile->eFileLock;
30426 *(int*)pArg = pFile->lastErrno;
30430 pFile->szChunk = *(int *)pArg;
30436 rc = fcntlSizeHint(pFile, *(i64 *)pArg);
30441 unixModeBit(pFile, UNIXFILE_PERSIST_WAL, (int*)pArg);
30445 unixModeBit(pFile, UNIXFILE_PSOW, (int*)pArg);
30449 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
30456 *(char**)pArg = zTFile;
30461 *(int*)pArg = fileHasMoved(pFile);
30466 i64 newLimit = *(i64*)pArg;
30471 *(i64*)pArg = pFile->mmapSizeMax;
30496 return proxyFileControl(id,op,pArg);
33867 static int proxyFileControl(sqlite3_file *id, int op, void *pArg){
33875 *(const char **)pArg = pCtx->lockProxyPath;
33877 *(const char **)pArg = ":auto: (not held)";
33880 *(const char **)pArg = NULL;
33888 if( pArg==NULL || (const char *)pArg==0 ){
33900 const char *proxyPath = (const char *)pArg;
33904 if( !strcmp(pArg, ":auto:")
37604 static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){
37605 if( *pArg<0 ){
37606 *pArg = (pFile->ctrlFlags & mask)!=0;
37607 }else if( (*pArg)==0 ){
37622 static int winFileControl(sqlite3_file *id, int op, void *pArg){
37624 OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg));
37627 *(int*)pArg = pFile->locktype;
37632 *(int*)pArg = (int)pFile->lastErrno;
37637 pFile->szChunk = *(int *)pArg;
37646 sqlite3_int64 newSz = *(sqlite3_int64*)pArg;
37660 winModeBit(pFile, WINFILE_PERSIST_WAL, (int*)pArg);
37665 winModeBit(pFile, WINFILE_PSOW, (int*)pArg);
37670 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
37675 int *a = (int*)pArg;
37691 LPHANDLE phFile = (LPHANDLE)pArg;
37704 *(char**)pArg = zTFile;
37711 i64 newLimit = *(i64*)pArg;
37716 *(i64*)pArg = pFile->mmapSizeMax;
40587 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg);
40592 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg);
49064 void *pArg = (void*)zMaster;
49065 rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_SYNC, pArg);
56590 static int btreeInvokeBusyHandler(void *pArg){
56591 BtShared *pBt = (BtShared*)pArg;
92574 void *pArg
92581 db->pAuthArg = pArg;
100075 Mem *pArg = (Mem *)argv[0];
100097 cmp = sqlite3MemCompare(pBest, pArg, pColl);
100099 sqlite3VdbeMemCopy(pBest, pArg);
100105 sqlite3VdbeMemCopy(pBest, pArg);
103914 void *pArg, /* First argument to xCallback() */
103978 if( xCallback(pArg, nCol, azVals, azCols) ){
114300 static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
114301 TabResult *p = (TabResult*)pArg; /* Result accumulator */
117232 Token *pArg = &pParse->sArg;
117233 if( pArg->z==0 ){
117234 pArg->z = p->z;
117235 pArg->n = p->n;
117237 assert(pArg->z <= p->z);
117238 pArg->n = (int)(&p->z[p->n] - pArg->z);
117787 void *pArg = 0;
117814 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
117832 pNew->pUserData = pArg;
132241 rc = p->xFunc(p->pArg, p->nBusy);
132257 void *pArg
132264 db->busyHandler.pArg = pArg;
132281 void *pArg
132293 db->pProgressArg = pArg;
132467 FuncDestructor *pArg = 0;
132476 pArg = (FuncDestructor *)sqlite3DbMallocZero(db, sizeof(FuncDestructor));
132477 if( !pArg ){
132481 pArg->xDestroy = xDestroy;
132482 pArg->pUserData = p;
132484 rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xFunc, xStep, xFinal, pArg);
132485 if( pArg && pArg->nRef==0 ){
132488 sqlite3DbFree(db, pArg);
132570 …API void *SQLITE_STDCALL sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
132582 db->pTraceArg = pArg;
132597 void *pArg
132610 db->pProfileArg = pArg;
132624 void *pArg /* Argument to the function */
132637 db->pCommitArg = pArg;
132649 void *pArg /* Argument to the function */
132662 db->pUpdateArg = pArg;
132674 void *pArg /* Argument to the function */
132687 db->pRollbackArg = pArg;
132749 void *pArg /* First argument passed to xCallback() */
132762 db->pWalArg = pArg;
133760 void *pArg = sqlite3GlobalConfig.pSqllogArg;
133761 sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0);
134158 …_API int SQLITE_STDCALL sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
134176 *(sqlite3_file**)pArg = fd;
134179 rc = sqlite3OsFileControl(fd, op, pArg);
134773 void *pArg
134791 xNotify(&pArg, 1);
134801 db->pUnlockArg = pArg;
157431 static void rtreeMatchArgFree(void *pArg){
157433 RtreeMatchArg *p = (RtreeMatchArg*)pArg;
162303 static int rbuVfsFileControl(sqlite3_file *pFile, int op, void *pArg){
162312 sqlite3rbu *pRbu = (sqlite3rbu*)pArg;
162317 rc = xControl(p->pReal, op, pArg);
162337 rc = xControl(p->pReal, op, pArg);
162340 char *zIn = *(char**)pArg;
162342 *(char**)pArg = zOut;
162702 void *pArg,
162706 return pRealVfs->xDlSym(pRealVfs, pArg, zSym);