Lines Matching refs:apArg

6724   void (*xNotify)(void **apArg, int nArg),    /* Callback function to invoke */
12486 Mem **apArg; /* Arguments to currently executing user function */
57526 ** sqlite3VdbeMakeReady() to size the Vdbe.apArg[] array.
57583 ** the number of entries in the Vdbe.apArg[] array required to execute the
58601 p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte);
62851 Mem **apArg;
62875 Mem **apArg;
63677 u.ag.apVal = p->apArg;
67591 u.cb.apVal = p->apArg;
68005 Mem **apArg;
68026 u.ci.apArg = p->apArg;
68028 u.ci.apArg[u.ci.i] = &u.ci.pArgc[u.ci.i+1];
68029 sqlite3VdbeMemStoreType(u.ci.apArg[u.ci.i]);
68033 rc = u.ci.pModule->xFilter(u.ci.pVtabCursor, u.ci.iQuery, pOp->p4.z, u.ci.nArg, u.ci.apArg);
68214 Mem **apArg;
68223 u.cm.apArg = p->apArg;
68229 u.cm.apArg[u.cm.i] = u.cm.pX;
68232 rc = u.cm.pModule->xUpdate(u.cm.pVtab, u.cm.nArg, u.cm.apArg, &u.cm.rowid);
68235 assert( u.cm.nArg>1 && u.cm.apArg[0] && (u.cm.apArg[0]->flags&MEM_Null) );
127355 static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
127364 tree.nDim = sqlite3_value_int(apArg[0]);
127366 node.zData = (u8 *)sqlite3_value_blob(apArg[1]);
127394 static void rtreedepth(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
127396 if( sqlite3_value_type(apArg[0])!=SQLITE_BLOB
127397 || sqlite3_value_bytes(apArg[0])<2
127401 u8 *zBlob = (u8 *)sqlite3_value_blob(apArg[0]);
127750 static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){
127754 const UChar *zString = sqlite3_value_text16(apArg[1]);
127767 const UChar *zPattern = sqlite3_value_text16(apArg[0]);
127833 static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){
127844 zLocale = (const char *)sqlite3_value_text(apArg[1]);
127847 zInput = sqlite3_value_text16(apArg[0]);
127851 nInput = sqlite3_value_bytes16(apArg[0]);
127921 sqlite3_value **apArg
127931 zLocale = (const char *)sqlite3_value_text(apArg[0]);
127932 zName = (const char *)sqlite3_value_text(apArg[1]);