Home
last modified time | relevance | path

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

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h690 #define sqlite3_serialize sqlite3_api->serialize macro
H A Dsqlite3.h6622 ** [sqlite3_serialize()] or [sqlite3_deserialize()], even operations that
10684 ** The sqlite3_serialize(D,S,P,F) interface returns a pointer to memory
10694 ** The usual case is that sqlite3_serialize() copies the serialization of
10699 ** are made, and the sqlite3_serialize() function will return a pointer
10717 ** A call to sqlite3_serialize(D,S,P,F) might return NULL even if the
10724 SQLITE_API unsigned char *sqlite3_serialize(
10732 ** CAPI3REF: Flags for sqlite3_serialize
10735 ** the F argument to [sqlite3_serialize(D,S,P,F)].
10737 ** SQLITE_SERIALIZE_NOCOPY means that [sqlite3_serialize()] will return
10741 ** [sqlite3_serialize()] t
[all...]
H A Dsqlite3.c6935 ** [sqlite3_serialize()] or [sqlite3_deserialize()], even operations that
10997 ** The sqlite3_serialize(D,S,P,F) interface returns a pointer to memory
11007 ** The usual case is that sqlite3_serialize() copies the serialization of
11012 ** are made, and the sqlite3_serialize() function will return a pointer
11030 ** A call to sqlite3_serialize(D,S,P,F) might return NULL even if the
11037 SQLITE_API unsigned char *sqlite3_serialize(
11045 ** CAPI3REF: Flags for sqlite3_serialize
11048 ** the F argument to [sqlite3_serialize(D,S,P,F)].
11050 ** SQLITE_SERIALIZE_NOCOPY means that [sqlite3_serialize()] will return
11054 ** [sqlite3_serialize()] t
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3248 pData = sqlite3_serialize(pDb->db, zSchema, &sz, SQLITE_SERIALIZE_NOCOPY); in DbObjCmd()
3252 pData = sqlite3_serialize(pDb->db, zSchema, &sz, 0); in DbObjCmd()