Home
last modified time | relevance | path

Searched refs:sqlite3_get_auxdata (Results 1 – 8 of 8) sorted by relevance

/sqlite-3.40.0/ext/icu/
H A Dicu.c292 pExpr = sqlite3_get_auxdata(p, 0); in icuRegexpFunc()
302 pExpr = sqlite3_get_auxdata(p, 0); in icuRegexpFunc()
/sqlite-3.40.0/src/
H A Dtest_func.c202 char *zAux = sqlite3_get_auxdata(pCtx, i); in test_auxdata()
248 int *pCounter = (int*)sqlite3_get_auxdata(pCtx, 0); in counterFunc()
H A Dloadext.c203 sqlite3_get_auxdata,
H A Dsqlite3ext.h452 #define sqlite3_get_auxdata sqlite3_api->get_auxdata macro
H A Djson.c1027 p = (JsonParse*)sqlite3_get_auxdata(pCtx, JSON_CACHE_ID+iKey); in jsonParseCached()
1067 return (JsonParse*)sqlite3_get_auxdata(pCtx, JSON_CACHE_ID+iMinKey); in jsonParseCached()
H A Dvdbeapi.c1015 void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){ in sqlite3_get_auxdata() function
H A Dsqlite.h.in4414 ** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()],
5738 ** ^The sqlite3_get_auxdata(C,N) interface returns a pointer to the metadata
5742 ** associated with the function argument, the sqlite3_get_auxdata(C,N) interface
5747 ** calls to sqlite3_get_auxdata(C,N) return P from the most recent
5780 void *sqlite3_get_auxdata(sqlite3_context*, int N);
/sqlite-3.40.0/ext/misc/
H A Dregexp.c761 pRe = sqlite3_get_auxdata(context, 0); in re_sql_func()