Home
last modified time | relevance | path

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

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h459 #define sqlite3_get_auxdata sqlite3_api->get_auxdata macro
H A Dsqlite3.h4556 ** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()],
5936 ** ^The sqlite3_get_auxdata(C,N) interface returns a pointer to the auxiliary data
5940 ** associated with the function argument, the sqlite3_get_auxdata(C,N) interface
5945 ** calls to sqlite3_get_auxdata(C,N) return P from the most recent
5969 ** sqlite3_get_auxdata() that occurs immediately after a corresponding call
5988 SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N);
6042 ** See also: [sqlite3_set_auxdata()] and [sqlite3_get_auxdata()].
H A Dsqlite3.c4869 ** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()],
6249 ** ^The sqlite3_get_auxdata(C,N) interface returns a pointer to the auxiliary data
6253 ** associated with the function argument, the sqlite3_get_auxdata(C,N) interface
6258 ** calls to sqlite3_get_auxdata(C,N) return P from the most recent
6282 ** sqlite3_get_auxdata() that occurs immediately after a corresponding call
6301 SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N);
6355 ** See also: [sqlite3_set_auxdata()] and [sqlite3_get_auxdata()].
[all...]
H A Dshell.c7028 pRe = sqlite3_get_auxdata(context, 0); in re_sql_func()