Lines Matching refs:sqlite3_blob

5974 typedef struct sqlite3_blob sqlite3_blob;  typedef
6056 sqlite3_blob **ppBlob
6082 SQLITE_API SQLITE_EXPERIMENTAL int SQLITE_STDCALL sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64…
6105 SQLITE_API int SQLITE_STDCALL sqlite3_blob_close(sqlite3_blob *);
6121 SQLITE_API int SQLITE_STDCALL sqlite3_blob_bytes(sqlite3_blob *);
6150 SQLITE_API int SQLITE_STDCALL sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
6192 SQLITE_API int SQLITE_STDCALL sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
77536 sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */
77748 *ppBlob = (sqlite3_blob *)pBlob;
77766 SQLITE_API int SQLITE_STDCALL sqlite3_blob_close(sqlite3_blob *pBlob){
77787 sqlite3_blob *pBlob,
77835 SQLITE_API int SQLITE_STDCALL sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){
77842 SQLITE_API int SQLITE_STDCALL sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOf…
77852 SQLITE_API int SQLITE_STDCALL sqlite3_blob_bytes(sqlite3_blob *pBlob){
77867 SQLITE_API int SQLITE_STDCALL sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
102029 int (*blob_bytes)(sqlite3_blob*);
102030 int (*blob_close)(sqlite3_blob*);
102032 int,sqlite3_blob**);
102033 int (*blob_read)(sqlite3_blob*,void*,int,int);
102034 int (*blob_write)(sqlite3_blob*,const void*,int,int);
102091 int (*blob_reopen)(sqlite3_blob*,sqlite3_int64);
132914 sqlite3_blob *pSegments; /* Blob handle open on %_segments table */
143109 sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */