Lines Matching refs:sqlite3_file
730 typedef struct sqlite3_file sqlite3_file; typedef
731 struct sqlite3_file { struct
839 int (*xClose)(sqlite3_file*);
840 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
841 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
842 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
843 int (*xSync)(sqlite3_file*, int flags);
844 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
845 int (*xLock)(sqlite3_file*, int);
846 int (*xUnlock)(sqlite3_file*, int);
847 int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
848 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
849 int (*xSectorSize)(sqlite3_file*);
850 int (*xDeviceCharacteristics)(sqlite3_file*);
852 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
853 int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
854 void (*xShmBarrier)(sqlite3_file*);
855 int (*xShmUnmap)(sqlite3_file*, int deleteFlag);
857 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
858 int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);
1474 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*,
3892 SQLITE_API sqlite3_file *sqlite3_database_file_object(const char*);