Lines Matching refs:sqlite3_set_auxdata

4870 ** and/or [sqlite3_set_auxdata()].
6250 ** associated by the sqlite3_set_auxdata(C,N,P,X) function with the Nth argument
6256 ** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as auxiliary data for the
6259 ** sqlite3_set_auxdata(C,N,P,X) call if the auxiliary data is still valid or
6261 ** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL,
6268 ** <li> ^(when sqlite3_set_auxdata() is invoked again on the same
6270 ** <li> ^(during the original sqlite3_set_auxdata() call when a memory
6272 ** <li> ^(during the original sqlite3_set_auxdata() call if the function
6277 ** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the
6278 ** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata()
6281 ** sqlite3_set_auxdata() has been called. Furthermore, a call to
6283 ** to sqlite3_set_auxdata() might still return NULL if an out-of-memory
6284 ** condition occurred during the sqlite3_set_auxdata() call or if the
6302 SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*));
6355 ** See also: [sqlite3_set_auxdata()] and [sqlite3_get_auxdata()].
23462 ** implementation calling sqlite3_set_auxdata() is stored in an instance
91559 SQLITE_API void sqlite3_set_auxdata(
101729 ** sqlite3_set_auxdata() API may be safely retained until the next
101748 ** sqlite3_set_auxdata() API may be safely retained until the next
136927 #define sqlite3_set_auxdata sqlite3_api->set_auxdata
137370 sqlite3_set_auxdata,
205248 sqlite3_set_auxdata(ctx, JSON_CACHE_ID, p, jsonCacheDeleteGeneric);
216876 ** a destructor function with sqlite3_set_auxdata().
216926 sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete);