Home
last modified time | relevance | path

Searched refs:sqlite3_set_auxdata (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/test/
H A DmallocB.test40 # malloc() failure in sqlite3_set_auxdata().
H A Dregexp2.test13 # It focuses on the use of the sqlite3_set_auxdata()/get_auxdata() APIs.
/sqlite-3.40.0/src/
H A Dtest_func.c213 sqlite3_set_auxdata(pCtx, i, zAux, free_test_auxdata); in test_auxdata()
256 sqlite3_set_auxdata(pCtx, 0, pCounter, sqlite3_free); in counterFunc()
H A Dloadext.c234 sqlite3_set_auxdata,
H A Dsqlite3ext.h487 #define sqlite3_set_auxdata sqlite3_api->set_auxdata macro
H A Dvdbeapi.c1043 void sqlite3_set_auxdata( in sqlite3_set_auxdata() function
H A Djson.c1065 sqlite3_set_auxdata(pCtx, JSON_CACHE_ID+iMinKey, p, in jsonParseCached()
H A Dsqlite.h.in4415 ** and/or [sqlite3_set_auxdata()].
5739 ** associated by the sqlite3_set_auxdata(C,N,P,X) function with the Nth argument
5745 ** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th
5748 ** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or
5750 ** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL,
5757 ** <li> ^(when sqlite3_set_auxdata() is invoked again on the same
5759 ** <li> ^(during the original sqlite3_set_auxdata() call when a memory
5763 ** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the
5764 ** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata()
5767 ** sqlite3_set_auxdata() has been called.
[all …]
/sqlite-3.40.0/ext/icu/
H A Dicu.c301 sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete); in icuRegexpFunc()
/sqlite-3.40.0/ext/misc/
H A Dregexp.c782 sqlite3_set_auxdata(context, 0, pRe, (void(*)(void*))re_free); in re_sql_func()