Home
last modified time | relevance | path

Searched refs:apArg (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c844 static void DbUnlockNotify(void **apArg, int nArg){ in DbUnlockNotify() argument
848 SqliteDb *pDb = (SqliteDb *)apArg[i]; in DbUnlockNotify()
/freebsd/contrib/sqlite3/
H A Dsqlite3.h9457 void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */
H A Dsqlite3.c9770 void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */
20720 sqlite3_value **apArg; /* The argument values */ member
23565 Mem **apArg; /* Arguments to currently executing user function */ member
31261 return sqlite3_value_int64(p->apArg[p->nUsed++]); in getIntArg()
31265 return sqlite3_value_double(p->apArg[p->nUsed++]); in getDoubleArg()
31269 return (char*)sqlite3_value_text(p->apArg[p->nUsed++]); in getTextArg()
87528 p->apArg = allocSpace(&x, 0, nArg*sizeof(Mem*));
87536 p->apArg = allocSpace(&x, p->apArg, nArg*sizeof(Mem*));
101418 Mem **apArg;
101437 apArg = p->apArg;
[all …]
H A Dshell.c17129 sqlite3_value **apArg in recoverPageIsUsed() argument
17132 i64 pgno = sqlite3_value_int64(apArg[0]); in recoverPageIsUsed()
17154 sqlite3_value **apArg in recoverGetPage() argument
17157 i64 pgno = sqlite3_value_int64(apArg[0]); in recoverGetPage()