Lines Matching refs:sqlite3_file

579 ** An [sqlite3_file] object represents an open file in the 
587 typedef struct sqlite3_file sqlite3_file;
588 struct sqlite3_file {
596 ** [sqlite3_file] object (or, more commonly, a subclass of the
597 ** [sqlite3_file] object) with a pointer to an instance of this object.
599 ** against the open file represented by the [sqlite3_file] object.
601 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
605 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
685 int (*xClose)(sqlite3_file*);
686 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
687 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
688 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
689 int (*xSync)(sqlite3_file*, int flags);
690 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
691 int (*xLock)(sqlite3_file*, int);
692 int (*xUnlock)(sqlite3_file*, int);
693 int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
694 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
695 int (*xSectorSize)(sqlite3_file*);
696 int (*xDeviceCharacteristics)(sqlite3_file*);
698 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
699 int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
700 void (*xShmBarrier)(sqlite3_file*);
701 int (*xShmUnmap)(sqlite3_file*, int deleteFlag);
740 ** to the [sqlite3_file] object associated with a particular database
817 ** file control is sent to the open [sqlite3_file] object corresponding
881 ** The szOsFile field is the size of the subclassed [sqlite3_file]
911 ** the [sqlite3_file] can safely store a pointer to the
970 ** to hold the [sqlite3_file] structure passed as the third
973 ** the xOpen method must set the sqlite3_file.pMethods to either
975 ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
1027 int szOsFile; /* Size of subclassed sqlite3_file */
1032 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
5724 ** a pointer to the underlying [sqlite3_file] object to be written into