Lines Matching defs:sqlite3_file

620 ** An [sqlite3_file] object represents an open file in the 
628 typedef struct sqlite3_file sqlite3_file;
629 struct sqlite3_file {
637 ** [sqlite3_file] object (or, more commonly, a subclass of the
638 ** [sqlite3_file] object) with a pointer to an instance of this object.
640 ** against the open file represented by the [sqlite3_file] object.
642 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
646 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
726 int (*xClose)(sqlite3_file*);
727 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
728 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
729 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
730 int (*xSync)(sqlite3_file*, int flags);
731 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
732 int (*xLock)(sqlite3_file*, int);
733 int (*xUnlock)(sqlite3_file*, int);
734 int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
735 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
736 int (*xSectorSize)(sqlite3_file*);
737 int (*xDeviceCharacteristics)(sqlite3_file*);
739 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
740 int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
741 void (*xShmBarrier)(sqlite3_file*);
742 int (*xShmUnmap)(sqlite3_file*, int deleteFlag);
744 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
745 int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p);
785 ** to the [sqlite3_file] object associated with a particular database
876 ** file control is sent to the open [sqlite3_file] object corresponding
1000 ** The szOsFile field is the size of the subclassed [sqlite3_file]
1030 ** the [sqlite3_file] can safely store a pointer to the
1089 ** to hold the [sqlite3_file] structure passed as the third
1092 ** the xOpen method must set the sqlite3_file.pMethods to either
1094 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
1146 int szOsFile; /* Size of subclassed sqlite3_file */
1151 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
6101 ** a pointer to the underlying [sqlite3_file] object to be written into