Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_blob

6065 typedef struct sqlite3_blob sqlite3_blob;
6070 ** CONSTRUCTOR: sqlite3_blob
6147 sqlite3_blob **ppBlob
6152 ** METHOD: sqlite3_blob
6173 SQLITE_API int SQLITE_STDCALL sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64);
6177 ** DESTRUCTOR: sqlite3_blob
6196 SQLITE_API int SQLITE_STDCALL sqlite3_blob_close(sqlite3_blob *);
6200 ** METHOD: sqlite3_blob
6212 SQLITE_API int SQLITE_STDCALL sqlite3_blob_bytes(sqlite3_blob *);
6216 ** METHOD: sqlite3_blob
6241 SQLITE_API int SQLITE_STDCALL sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
6245 ** METHOD: sqlite3_blob
6283 SQLITE_API int SQLITE_STDCALL sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
79639 ** Valid sqlite3_blob* handles point to Incrblob structures.
79731 sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
79944 *ppBlob = (sqlite3_blob *)pBlob;
79962 SQLITE_API int SQLITE_STDCALL sqlite3_blob_close(sqlite3_blob *pBlob){
79983 sqlite3_blob *pBlob,
80031 SQLITE_API int SQLITE_STDCALL sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
80038 SQLITE_API int SQLITE_STDCALL sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){
80048 SQLITE_API int SQLITE_STDCALL sqlite3_blob_bytes(sqlite3_blob *pBlob){
80063 SQLITE_API int SQLITE_STDCALL sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
104239 int (*blob_bytes)(sqlite3_blob*);
104240 int (*blob_close)(sqlite3_blob*);
104242 int,sqlite3_blob**);
104243 int (*blob_read)(sqlite3_blob*,void*,int,int);
104244 int (*blob_write)(sqlite3_blob*,const void*,int,int);
104301 int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);
135787 sqlite3_blob *pSegments; /* Blob handle open on %_segments table */
146067 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */
147099 ** This function may leave an open sqlite3_blob* handle in the
172803 sqlite3_blob *pReader; /* RO incr-blob open on %_data table */
173131 sqlite3_blob *pReader = p->pReader;
173153 sqlite3_blob *pBlob = p->pReader;
177357 sqlite3_blob *pBlob = 0;