Home | History | Annotate | Download | only in dist

Lines Matching defs:apArg

7178   void (*xNotify)(void **apArg, int nArg),    /* Callback function to invoke */
13122 Mem **apArg; /* Arguments to currently executing user function */
59944 ** sqlite3VdbeMakeReady() to size the Vdbe.apArg[] array.
60007 ** the number of entries in the Vdbe.apArg[] array required to execute the
61070 p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte);
65413 Mem **apArg;
65437 Mem **apArg;
66270 u.ah.apVal = p->apArg;
70338 u.cf.apVal = p->apArg;
70758 Mem **apArg;
70779 u.cm.apArg = p->apArg;
70781 u.cm.apArg[u.cm.i] = &u.cm.pArgc[u.cm.i+1];
70782 sqlite3VdbeMemStoreType(u.cm.apArg[u.cm.i]);
70786 rc = u.cm.pModule->xFilter(u.cm.pVtabCursor, u.cm.iQuery, pOp->p4.z, u.cm.nArg, u.cm.apArg);
70972 Mem **apArg;
70985 u.cq.apArg = p->apArg;
70991 u.cq.apArg[u.cq.i] = u.cq.pX;
70995 rc = u.cq.pModule->xUpdate(u.cq.pVtab, u.cq.nArg, u.cq.apArg, &u.cq.rowid);
70999 assert( u.cq.nArg>1 && u.cq.apArg[0] && (u.cq.apArg[0]->flags&MEM_Null) );
133293 static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
133302 tree.nDim = sqlite3_value_int(apArg[0]);
133304 node.zData = (u8 *)sqlite3_value_blob(apArg[1]);
133332 static void rtreedepth(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
133334 if( sqlite3_value_type(apArg[0])!=SQLITE_BLOB
133335 || sqlite3_value_bytes(apArg[0])<2
133339 u8 *zBlob = (u8 *)sqlite3_value_blob(apArg[0]);
133689 static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){
133693 const UChar *zString = sqlite3_value_text16(apArg[1]);
133706 const UChar *zPattern = sqlite3_value_text16(apArg[0]);
133772 static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){
133783 zLocale = (const char *)sqlite3_value_text(apArg[1]);
133786 zInput = sqlite3_value_text16(apArg[0]);
133790 nInput = sqlite3_value_bytes16(apArg[0]);
133860 sqlite3_value **apArg
133870 zLocale = (const char *)sqlite3_value_text(apArg[0]);
133871 zName = (const char *)sqlite3_value_text(apArg[1]);