Searched refs:sqlite3_vfs (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d361 struct sqlite3_vfs
366 sqlite3_vfs *pNext; /** Next registered VFS */
369 int function (sqlite3_vfs*, const char *zName, sqlite3_file*,
371 int function (sqlite3_vfs*, const char *zName, int syncDir) xDelete;
372 int function (sqlite3_vfs*, const char *zName, int flags, int *pResOut) xAccess;
373 int function (sqlite3_vfs*, const char *zName, int nOut, char *zOut) xFullPathname;
374 void* function (sqlite3_vfs*, const char *zFilename) xDlOpen;
375 void function (sqlite3_vfs*, int nByte, char *zErrMsg) xDlError;
376 xDlSymReturn function (sqlite3_vfs*,void*, const char *zSymbol) *xDlSym;
377 void function (sqlite3_vfs*, voi
[all...]
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.h578 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
721 ** [sqlite3_vfs | OS interface layer]. Individual OS interface
736 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
742 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
744 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
745 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
746 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1005 ** of type "[sqlite3_vfs] **". This opcodes will set *X
1297 ** An instance of the sqlite3_vfs object defines the interface between
1308 ** may be appended to the sqlite3_vfs objec
1463 typedef struct sqlite3_vfs sqlite3_vfs; typedef in typeref:struct:sqlite3_vfs
1465 struct sqlite3_vfs { struct
[all...]
H A Dsqlite3ext.h195 sqlite3_vfs *(*vfs_find)(const char*);
196 int (*vfs_register)(sqlite3_vfs*,int);
197 int (*vfs_unregister)(sqlite3_vfs*);
H A Dshell.c1291 static sqlite3_vfs *clockVfs = 0;
8706 typedef struct sqlite3_vfs ApndVfs;
8712 #define ORIGVFS(p) ((sqlite3_vfs*)((p)->pAppData))
8781 static int apndOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *);
8782 static int apndDelete(sqlite3_vfs*, const char *zName, int syncDir);
8783 static int apndAccess(sqlite3_vfs*, const char *zName, int flags, int *);
8784 static int apndFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut);
8785 static void *apndDlOpen(sqlite3_vfs*, const char *zFilename);
8786 static void apndDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
8787 static void (*apndDlSym(sqlite3_vfs *pVf
[all...]
H A Dsqlite3.c891 ** in the 4th parameter to the [sqlite3_vfs.xOpen] method.
1034 ** [sqlite3_vfs | OS interface layer]. Individual OS interface
1049 ** Every file opened by the [sqlite3_vfs.xOpen] method populates an
1055 ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element
1057 ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The
1058 ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen]
1059 ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element
1318 ** of type "[sqlite3_vfs] **". This opcodes will set *X
1610 ** An instance of the sqlite3_vfs object defines the interface between
1621 ** may be appended to the sqlite3_vfs objec
1776 typedef struct sqlite3_vfs sqlite3_vfs; typedef in typeref:struct:sqlite3_vfs
1778 struct sqlite3_vfs { struct
[all...]
/netbsd-current/external/public-domain/sqlite/man/
H A DMakefile209 sqlite3_vfs.3 \

Completed in 499 milliseconds