Home
last modified time | relevance | path

Searched refs:sqlite3_file (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h581 typedef struct sqlite3_file sqlite3_file; typedef
582 struct sqlite3_file { struct
679 int (*xClose)(sqlite3_file*);
682 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
683 int (*xSync)(sqlite3_file*, int flags);
685 int (*xLock)(sqlite3_file*, int);
686 int (*xUnlock)(sqlite3_file*, int);
689 int (*xSectorSize)(sqlite3_file*);
690 int (*xDeviceCharacteristics)(sqlite3_file*);
694 void (*xShmBarrier)(sqlite3_file*);
[all …]
H A Dsqlite3.c1134 typedef struct sqlite3_file sqlite3_file; typedef
1135 struct sqlite3_file { struct
1232 int (*xClose)(sqlite3_file*);
14463 sqlite3_file *pFile, in sqlite3OsOpen()
14539 sqlite3_file **ppFile, in sqlite3OsOpenMalloc()
14544 sqlite3_file *pFile; in sqlite3OsOpenMalloc()
27577 sqlite3_file *id,
27656 sqlite3_file *id,
60128 sqlite3_file *pMaster = 0;
71215 sqlite3_file *pReal = (sqlite3_file *)&p[1];
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.h680 typedef struct sqlite3_file sqlite3_file; typedef
681 struct sqlite3_file { struct
782 int (*xClose)(sqlite3_file*);
785 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
786 int (*xSync)(sqlite3_file*, int flags);
788 int (*xLock)(sqlite3_file*, int);
789 int (*xUnlock)(sqlite3_file*, int);
792 int (*xSectorSize)(sqlite3_file*);
793 int (*xDeviceCharacteristics)(sqlite3_file*);
797 void (*xShmBarrier)(sqlite3_file*);
[all …]
H A Dshell.c3703 static int apndClose(sqlite3_file*);
3709 static int apndLock(sqlite3_file*, int);
3710 static int apndUnlock(sqlite3_file*, int);
3713 static int apndSectorSize(sqlite3_file*);
3717 static void apndShmBarrier(sqlite3_file*);
3803 sqlite3_file *pFile, in apndRead()
3830 sqlite3_file *pFile, in apndWrite()
3947 sqlite3_file *pFile, in apndShmMap()
3977 sqlite3_file *pFile, in apndFetch()
4034 sqlite3_file *pFile, in apndOpen()
[all …]
H A Dsqlite3.c1719 typedef struct sqlite3_file sqlite3_file; typedef
1720 struct sqlite3_file { struct
23117 sqlite3_file *pFile, in sqlite3OsOpen()
23212 sqlite3_file *pFile; in sqlite3OsOpenMalloc()
36783 sqlite3_file *id,
36897 sqlite3_file *id,
94960 sqlite3_file **ppFd
96996 sqlite3_file *pReal = (sqlite3_file*)p;
163965 sqlite3_file *fd;
199547 sqlite3_file *pFd = (sqlite3_file*)pRbu->pRbuFd;
[all …]
H A Dsqlite3ext.h337 sqlite3_file *(*database_file_object)(const char*);