Home | History | Annotate | Download | only in orig

Lines Matching defs:apArg

7178   void (*xNotify)(void **apArg, int nArg),    /* Callback function to invoke */
13122 Mem **apArg; /* Arguments to currently executing user function */
59916 ** sqlite3VdbeMakeReady() to size the Vdbe.apArg[] array.
59979 ** the number of entries in the Vdbe.apArg[] array required to execute the
61042 p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte);
65385 Mem **apArg;
65409 Mem **apArg;
66242 u.ah.apVal = p->apArg;
70310 u.cf.apVal = p->apArg;
70730 Mem **apArg;
70751 u.cm.apArg = p->apArg;
70753 u.cm.apArg[u.cm.i] = &u.cm.pArgc[u.cm.i+1];
70754 sqlite3VdbeMemStoreType(u.cm.apArg[u.cm.i]);
70758 rc = u.cm.pModule->xFilter(u.cm.pVtabCursor, u.cm.iQuery, pOp->p4.z, u.cm.nArg, u.cm.apArg);
70944 Mem **apArg;
70957 u.cq.apArg = p->apArg;
70963 u.cq.apArg[u.cq.i] = u.cq.pX;
70967 rc = u.cq.pModule->xUpdate(u.cq.pVtab, u.cq.nArg, u.cq.apArg, &u.cq.rowid);
70971 assert( u.cq.nArg>1 && u.cq.apArg[0] && (u.cq.apArg[0]->flags&MEM_Null) );
133247 static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
133256 tree.nDim = sqlite3_value_int(apArg[0]);
133258 node.zData = (u8 *)sqlite3_value_blob(apArg[1]);
133286 static void rtreedepth(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
133288 if( sqlite3_value_type(apArg[0])!=SQLITE_BLOB
133289 || sqlite3_value_bytes(apArg[0])<2
133293 u8 *zBlob = (u8 *)sqlite3_value_blob(apArg[0]);
133643 static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){
133647 const UChar *zString = sqlite3_value_text16(apArg[1]);
133660 const UChar *zPattern = sqlite3_value_text16(apArg[0]);
133726 static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){
133737 zLocale = (const char *)sqlite3_value_text(apArg[1]);
133740 zInput = sqlite3_value_text16(apArg[0]);
133744 nInput = sqlite3_value_bytes16(apArg[0]);
133814 sqlite3_value **apArg
133824 zLocale = (const char *)sqlite3_value_text(apArg[0]);
133825 zName = (const char *)sqlite3_value_text(apArg[1]);