Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_blob

6449 typedef struct sqlite3_blob sqlite3_blob;
6454 ** CONSTRUCTOR: sqlite3_blob
6541 sqlite3_blob **ppBlob
6546 ** METHOD: sqlite3_blob
6567 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64);
6571 ** DESTRUCTOR: sqlite3_blob
6590 SQLITE_API int sqlite3_blob_close(sqlite3_blob *);
6594 ** METHOD: sqlite3_blob
6606 SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *);
6610 ** METHOD: sqlite3_blob
6635 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
6639 ** METHOD: sqlite3_blob
6677 SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
85362 ** Valid sqlite3_blob* handles point to Incrblob structures.
85465 sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
85676 *ppBlob = (sqlite3_blob *)pBlob;
85694 SQLITE_API int sqlite3_blob_close(sqlite3_blob *pBlob){
85715 sqlite3_blob *pBlob,
85787 SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
85794 SQLITE_API int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){
85804 SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *pBlob){
85819 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
111174 int (*blob_bytes)(sqlite3_blob*);
111175 int (*blob_close)(sqlite3_blob*);
111177 int,sqlite3_blob**);
111178 int (*blob_read)(sqlite3_blob*,void*,int,int);
111179 int (*blob_write)(sqlite3_blob*,const void*,int,int);
111236 int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);
145158 sqlite3_blob *pSegments; /* Blob handle open on %_segments table */
155489 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */
156522 ** This function may leave an open sqlite3_blob* handle in the
163635 sqlite3_blob *pNodeBlob;
164107 sqlite3_blob *pBlob = pRtree->pNodeBlob;
164140 sqlite3_blob *pBlob = pRtree->pNodeBlob;
164159 /* If unable to open an sqlite3_blob on the desired row, that can only
166672 ** The sqlite3_blob object should be released at this point.
189466 sqlite3_blob *pReader; /* RO incr-blob open on %_data table */
189791 sqlite3_blob *pReader = p->pReader;
189813 sqlite3_blob *pBlob = p->pReader;
194683 sqlite3_blob *pBlob = 0;