Searched refs:sqlite3_set_clientdata (Results 1 – 3 of 3) sorted by relevance
| /freebsd-src/contrib/sqlite3/ |
| H A D | sqlite3ext.h | 701 #define sqlite3_set_clientdata sqlite3_api->set_clientdata macro
|
| H A D | sqlite3.h | 5986 ** See also: [sqlite3_get_clientdata()] and [sqlite3_set_clientdata()]. 5997 ** A call to sqlite3_set_clientdata(D,N,P,X) causes the pointer P 6001 ** sqlite3_set_clientdata() with the same values of D and N. 6008 ** sqlite3_set_clientdata() which attempts to register pointer P. 6009 ** <li> A subsequent call to sqlite3_set_clientdata(D,N,P,X) is made 6045 SQLITE_API int sqlite3_set_clientdata(sqlite3*, const char*, void*, void(*)(void*));
|
| H A D | sqlite3.c | 6299 ** See also: [sqlite3_get_clientdata()] and [sqlite3_set_clientdata()]. 6310 ** A call to sqlite3_set_clientdata(D,N,P,X) causes the pointer P 6314 ** sqlite3_set_clientdata() with the same values of D and N. 6321 ** sqlite3_set_clientdata() which attempts to register pointer P. 6322 ** <li> A subsequent call to sqlite3_set_clientdata(D,N,P,X) is made 6358 SQLITE_API int sqlite3_set_clientdata(sqlite3*, const char*, void*, void(*)(void*)); 17758 DbClientData *pDbData; /* sqlite3_set_clientdata() content */ 20406 /* Client data associated with sqlite3_set_clientdata() and [all...] |