Home | History | Annotate | Download | only in dist

Lines Matching full:parg

1154   int (*xFileControl)(sqlite3_file*, int op, void *pArg);
1171 ** into an integer that the pArg argument points to. This capability
4321 ** ^The pArg argument is passed through to the callback.
5720 pArg value.)^
5827 void *pArg;
6692 void *pArg; /* First arg to busy callback */
8514 ** LIKEFUNC(zName, nArg, pArg, flags)
8517 ** function likeFunc. Argument pArg is cast to a (void *) and made
8525 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \
8527 pArg, 0, xFunc, 0, 0, #zName, 0}
12136 SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){
12137 return id->pMethods->xFileControl(id, op, pArg);
15795 void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
15796 void *pArg,
15801 mem0.alarmArg = pArg;
15813 void(*xCallback)(void *pArg, sqlite3_int64 used,int N),
15814 void *pArg,
15817 return sqlite3MemoryAlarm(xCallback, pArg, iThreshold);
15827 void *pArg;
15831 pArg = mem0.alarmArg;
15834 xCallback(pArg, nowUsed, nByte);
15837 mem0.alarmArg = pArg;
20685 static int os2FileControl(sqlite3_file *id, int op, void *pArg){
20688 *(int*)pArg = ((os2File*)id)->locktype;
22340 static void *threadLockingTest(void *pArg){
22341 struct threadTestData *pData = (struct threadTestData*)pArg;
22343 return pArg;
24676 static int unixFileControl(sqlite3_file *id, int op, void *pArg){
24679 *(int*)pArg = ((unixFile*)id)->locktype;
24683 *(int*)pArg = ((unixFile*)id)->lastErrno;
24700 return proxyFileControl(id,op,pArg);
26797 static int proxyFileControl(sqlite3_file *id, int op, void *pArg){
26805 *(const char **)pArg = pCtx->lockProxyPath;
26807 *(const char **)pArg = ":auto: (not held)";
26810 *(const char **)pArg = NULL;
26818 if( pArg==NULL || (const char *)pArg==0 ){
26827 const char *proxyPath = (const char *)pArg;
26831 if( !strcmp(pArg, ":auto:")
28416 static int winFileControl(sqlite3_file *id, int op, void *pArg){
28419 *(int*)pArg = ((winFile*)id)->locktype;
28423 *(int*)pArg = (int)((winFile*)id)->lastErrno;
29795 return sqlite3GlobalConfig.pcache.xInit(sqlite3GlobalConfig.pcache.pArg);
29799 sqlite3GlobalConfig.pcache.xShutdown(sqlite3GlobalConfig.pcache.pArg);
30942 0, /* pArg */
39434 static int btreeInvokeBusyHandler(void *pArg){
39435 BtShared *pBt = (BtShared*)pArg;
52616 Mem *pArg;
53775 Mem *pArg;
53787 u.ag.pArg = &aMem[pOp->p2];
53788 for(u.ag.i=0; u.ag.i<u.ag.n; u.ag.i++, u.ag.pArg++){
53789 u.ag.apVal[u.ag.i] = u.ag.pArg;
53790 sqlite3VdbeMemStoreType(u.ag.pArg);
53791 REGISTER_TRACE(pOp->p2, u.ag.pArg);
66294 void *pArg
66298 db->pAuthArg = pArg;
72521 Mem *pArg = (Mem *)argv[0];
72542 cmp = sqlite3MemCompare(pBest, pArg, pColl);
72544 sqlite3VdbeMemCopy(pBest, pArg);
72547 sqlite3VdbeMemCopy(pBest, pArg);
75828 ** the xCallback() function is called. pArg becomes the first
75836 void *pArg, /* First argument to xCallback() */
75900 if( xCallback(pArg, nCol, azVals, azCols) ){
83558 static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
83559 TabResult *p = (TabResult*)pArg; /* Result accumulator */
86217 Token *pArg = &pParse->sArg;
86218 if( pArg->z==0 ){
86219 pArg->z = p->z;
86220 pArg->n = p->n;
86222 assert(pArg->z < p->z);
86223 pArg->n = (int)(&p->z[p->n] - pArg->z);
86666 void *pArg = 0;
86693 rc = pMod->xFindFunction(pVtab, nArg, zLowerName, &xFunc, &pArg);
86711 pNew->pUserData = pArg;
96293 rc = p->xFunc(p->pArg, p->nBusy);
96309 void *pArg
96313 db->busyHandler.pArg = pArg;
96329 void *pArg
96335 db->pProgressArg = pArg;
96532 ** Register a trace function. The pArg from the previously registered trace
96539 SQLITE_API void *sqlite3_trace(sqlite3 *db, void (*xTrace)(void*,const char*), void *pArg){
96544 db->pTraceArg = pArg;
96549 ** Register a profile function. The pArg from the previously registered
96559 void *pArg
96565 db->pProfileArg = pArg;
96580 void *pArg /* Argument to the function */
96586 db->pCommitArg = pArg;
96598 void *pArg /* Argument to the function */
96604 db->pUpdateArg = pArg;
96616 void *pArg /* Argument to the function */
96622 db->pRollbackArg = pArg;
97568 SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
97590 rc = sqlite3OsFileControl(fd, op, pArg);
97943 void *pArg
97960 xNotify(&pArg, 1);
97970 db->pUnlockArg = pArg;