Lines Matching refs:sqlite3_blob
7463 typedef struct sqlite3_blob sqlite3_blob;
7468 ** CONSTRUCTOR: sqlite3_blob
7555 sqlite3_blob **ppBlob
7560 ** METHOD: sqlite3_blob
7581 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64);
7585 ** DESTRUCTOR: sqlite3_blob
7604 SQLITE_API int sqlite3_blob_close(sqlite3_blob *);
7608 ** METHOD: sqlite3_blob
7620 SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *);
7624 ** METHOD: sqlite3_blob
7649 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
7653 ** METHOD: sqlite3_blob
7691 SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
87313 ** Valid sqlite3_blob* handles point to Incrblob structures.
87417 sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
87626 *ppBlob = (sqlite3_blob *)pBlob;
87643 SQLITE_API int sqlite3_blob_close(sqlite3_blob *pBlob){
87664 sqlite3_blob *pBlob,
87736 SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
87743 SQLITE_API int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){
87753 SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *pBlob){
87768 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
113437 int (*blob_bytes)(sqlite3_blob*);
113438 int (*blob_close)(sqlite3_blob*);
113440 int,sqlite3_blob**);
113441 int (*blob_read)(sqlite3_blob*,void*,int,int);
113442 int (*blob_write)(sqlite3_blob*,const void*,int,int);
113499 int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);
148712 sqlite3_blob *pSegments; /* Blob handle open on %_segments table */
159038 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */
160072 ** This function may leave an open sqlite3_blob* handle in the
167186 sqlite3_blob *pNodeBlob;
167650 sqlite3_blob *pBlob = pRtree->pNodeBlob;
167683 sqlite3_blob *pBlob = pRtree->pNodeBlob;
167702 /* If unable to open an sqlite3_blob on the desired row, that can only
170199 ** The sqlite3_blob object should be released at this point.
194502 sqlite3_blob *pReader; /* RO incr-blob open on %_data table */
194827 sqlite3_blob *pReader = p->pReader;
194848 sqlite3_blob *pBlob = p->pReader;
199729 sqlite3_blob *pBlob = 0;