Lines Matching refs:apArg

7459   void (*xNotify)(void **apArg, int nArg),    /* Callback function to invoke */
13061 sqlite3_value **apArg; /* The argument values */ member
14822 Mem **apArg; /* Arguments to currently executing user function */ member
21493 return sqlite3_value_int64(p->apArg[p->nUsed++]);
21497 return sqlite3_value_double(p->apArg[p->nUsed++]);
21501 return (char*)sqlite3_value_text(p->apArg[p->nUsed++]);
66506 p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte);
72411 apVal = p->apArg;
76553 apVal = p->apArg;
76982 Mem **apArg;
77001 apArg = p->apArg;
77003 apArg[i] = &pArgc[i+1];
77005 rc = pModule->xFilter(pVtabCursor, iQuery, pOp->p4.z, nArg, apArg);
77170 Mem **apArg;
77187 apArg = p->apArg;
77192 apArg[i] = pX;
77196 rc = pModule->xUpdate(pVtab, nArg, apArg, &rowid);
77200 assert( nArg>1 && apArg[0] && (apArg[0]->flags&MEM_Null) );
96664 x.apArg = argv+1;
154237 static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
154246 tree.nDim = sqlite3_value_int(apArg[0]);
154248 node.zData = (u8 *)sqlite3_value_blob(apArg[1]);
154291 static void rtreedepth(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){
154293 if( sqlite3_value_type(apArg[0])!=SQLITE_BLOB
154294 || sqlite3_value_bytes(apArg[0])<2
154298 u8 *zBlob = (u8 *)sqlite3_value_blob(apArg[0]);
154691 static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){
154695 const UChar *zString = sqlite3_value_text16(apArg[1]);
154708 const UChar *zPattern = sqlite3_value_text16(apArg[0]);
154774 static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){
154785 zLocale = (const char *)sqlite3_value_text(apArg[1]);
154788 zInput = sqlite3_value_text16(apArg[0]);
154792 nInput = sqlite3_value_bytes16(apArg[0]);
154862 sqlite3_value **apArg
154872 zLocale = (const char *)sqlite3_value_text(apArg[0]);
154873 zName = (const char *)sqlite3_value_text(apArg[1]);