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;
30416 static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){
30417 if( *pArg<0 ){
30418 *pArg = (pFile->ctrlFlags & mask)!=0;
30419 }else if( (*pArg)==0 ){
30432 static int unixFileControl(sqlite3_file *id, int op, void *pArg){
30440 *(int*)pArg = pFile->eFileLock;
30444 *(int*)pArg = pFile->lastErrno;
30448 pFile->szChunk = *(int *)pArg;
30454 rc = fcntlSizeHint(pFile, *(i64 *)pArg);
30459 unixModeBit(pFile, UNIXFILE_PERSIST_WAL, (int*)pArg);
30463 unixModeBit(pFile, UNIXFILE_PSOW, (int*)pArg);
30467 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
30474 *(char**)pArg = zTFile;
30479 *(int*)pArg = fileHasMoved(pFile);
30484 i64 newLimit = *(i64*)pArg;
30489 *(i64*)pArg = pFile->mmapSizeMax;
30514 return proxyFileControl(id,op,pArg);
33885 static int proxyFileControl(sqlite3_file *id, int op, void *pArg){
33893 *(const char **)pArg = pCtx->lockProxyPath;
33895 *(const char **)pArg = ":auto: (not held)";
33898 *(const char **)pArg = NULL;
33906 if( pArg==NULL || (const char *)pArg==0 ){
33918 const char *proxyPath = (const char *)pArg;
33922 if( !strcmp(pArg, ":auto:")
37622 static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){
37623 if( *pArg<0 ){
37624 *pArg = (pFile->ctrlFlags & mask)!=0;
37625 }else if( (*pArg)==0 ){
37640 static int winFileControl(sqlite3_file *id, int op, void *pArg){
37642 OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg));
37645 *(int*)pArg = pFile->locktype;
37650 *(int*)pArg = (int)pFile->lastErrno;
37655 pFile->szChunk = *(int *)pArg;
37664 sqlite3_int64 newSz = *(sqlite3_int64*)pArg;
37678 winModeBit(pFile, WINFILE_PERSIST_WAL, (int*)pArg);
37683 winModeBit(pFile, WINFILE_PSOW, (int*)pArg);
37688 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
37693 int *a = (int*)pArg;
37709 LPHANDLE phFile = (LPHANDLE)pArg;
37722 *(char**)pArg = zTFile;
37729 i64 newLimit = *(i64*)pArg;
37734 *(i64*)pArg = pFile->mmapSizeMax;
40605 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg);
40610 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg);
49082 void *pArg = (void*)zMaster;
49083 rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_SYNC, pArg);
56608 static int btreeInvokeBusyHandler(void *pArg){
56609 BtShared *pBt = (BtShared*)pArg;
92592 void *pArg
92599 db->pAuthArg = pArg;
100093 Mem *pArg = (Mem *)argv[0];
100115 cmp = sqlite3MemCompare(pBest, pArg, pColl);
100117 sqlite3VdbeMemCopy(pBest, pArg);
100123 sqlite3VdbeMemCopy(pBest, pArg);
103932 void *pArg, /* First argument to xCallback() */
103996 if( xCallback(pArg, nCol, azVals, azCols) ){
114318 static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
114319 TabResult *p = (TabResult*)pArg; /* Result accumulator */
117250 Token *pArg = &pParse->sArg;
117251 if( pArg->z==0 ){
117252 pArg->z = p->z;
117253 pArg->n = p->n;
117255 assert(pArg->z <= p->z);
117256 pArg->n = (int)(&p->z[p->n] - pArg->z);
117805 void *pArg = 0;
117832 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
117850 pNew->pUserData = pArg;
132259 rc = p->xFunc(p->pArg, p->nBusy);
132275 void *pArg
132282 db->busyHandler.pArg = pArg;
132299 void *pArg
132311 db->pProgressArg = pArg;
132485 FuncDestructor *pArg = 0;
132494 pArg = (FuncDestructor *)sqlite3DbMallocZero(db, sizeof(FuncDestructor));
132495 if( !pArg ){
132499 pArg->xDestroy = xDestroy;
132500 pArg->pUserData = p;
132502 rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xFunc, xStep, xFinal, pArg);
132503 if( pArg && pArg->nRef==0 ){
132506 sqlite3DbFree(db, pArg);
132588 …API void *SQLITE_STDCALL sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
132600 db->pTraceArg = pArg;
132615 void *pArg
132628 db->pProfileArg = pArg;
132642 void *pArg /* Argument to the function */
132655 db->pCommitArg = pArg;
132667 void *pArg /* Argument to the function */
132680 db->pUpdateArg = pArg;
132692 void *pArg /* Argument to the function */
132705 db->pRollbackArg = pArg;
132767 void *pArg /* First argument passed to xCallback() */
132780 db->pWalArg = pArg;
133778 void *pArg = sqlite3GlobalConfig.pSqllogArg;
133779 sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0);
134176 …_API int SQLITE_STDCALL sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
134194 *(sqlite3_file**)pArg = fd;
134197 rc = sqlite3OsFileControl(fd, op, pArg);
134791 void *pArg
134809 xNotify(&pArg, 1);
134819 db->pUnlockArg = pArg;
157461 static void rtreeMatchArgFree(void *pArg){
157463 RtreeMatchArg *p = (RtreeMatchArg*)pArg;
162333 static int rbuVfsFileControl(sqlite3_file *pFile, int op, void *pArg){
162342 sqlite3rbu *pRbu = (sqlite3rbu*)pArg;
162347 rc = xControl(p->pReal, op, pArg);
162367 rc = xControl(p->pReal, op, pArg);
162370 char *zIn = *(char**)pArg;
162372 *(char**)pArg = zOut;
162732 void *pArg,
162736 return pRealVfs->xDlSym(pRealVfs, pArg, zSym);