Searched refs:sqlite3_syscall_ptr (Results 1 – 2 of 2) sorted by relevance
| /minix3/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.h | 1140 typedef void (*sqlite3_syscall_ptr)(void); typedef 1170 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1171 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
|
| H A D | sqlite3.c | 1168 typedef void (*sqlite3_syscall_ptr)(void); typedef 1198 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1199 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); 23953 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ 23954 sqlite3_syscall_ptr pDefault; /* Default value */ 23956 { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, 23959 { "close", (sqlite3_syscall_ptr)close, 0 }, 23962 { "access", (sqlite3_syscall_ptr)access, 0 }, 23965 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, 23968 { "stat", (sqlite3_syscall_ptr)stat, 0 }, [all …]
|