Lines Matching defs:sqlite3_blob

8018 typedef struct sqlite3_blob sqlite3_blob;
8023 ** CONSTRUCTOR: sqlite3_blob
8110 sqlite3_blob **ppBlob
8115 ** METHOD: sqlite3_blob
8136 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64);
8140 ** DESTRUCTOR: sqlite3_blob
8159 SQLITE_API int sqlite3_blob_close(sqlite3_blob *);
8163 ** METHOD: sqlite3_blob
8175 SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *);
8179 ** METHOD: sqlite3_blob
8204 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
8208 ** METHOD: sqlite3_blob
8246 SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
102305 ** Valid sqlite3_blob* handles point to Incrblob structures.
102411 sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
102622 *ppBlob = (sqlite3_blob *)pBlob;
102639 SQLITE_API int sqlite3_blob_close(sqlite3_blob *pBlob){
102661 sqlite3_blob *pBlob,
102735 SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
102742 SQLITE_API int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){
102752 SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *pBlob){
102767 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
136605 int (*blob_bytes)(sqlite3_blob*);
136606 int (*blob_close)(sqlite3_blob*);
136608 int,sqlite3_blob**);
136609 int (*blob_read)(sqlite3_blob*,void*,int,int);
136610 int (*blob_write)(sqlite3_blob*,const void*,int,int);
136667 int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);
186046 sqlite3_blob *pSegments; /* Blob handle open on %_segments table */
196621 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */
197658 ** This function may leave an open sqlite3_blob* handle in the
210497 sqlite3_blob *pNodeBlob;
211010 sqlite3_blob *pBlob = pRtree->pNodeBlob;
211041 sqlite3_blob *pBlob = pRtree->pNodeBlob;
211057 /* If unable to open an sqlite3_blob on the desired row, that can only
213551 ** The sqlite3_blob object should be released at this point.
240890 sqlite3_blob *pReader; /* RO incr-blob open on %_data table */
241307 sqlite3_blob *pReader = p->pReader;
241328 sqlite3_blob *pBlob = p->pReader;
247858 sqlite3_blob *pBlob = 0;