Searched refs:sqlite3_syscall_ptr (Results 1 – 3 of 3) sorted by relevance
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | sqlite3.h | 1464 typedef void (*sqlite3_syscall_ptr)(void); typedef 1494 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1495 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
|
| D | sqlite3.c | 1777 typedef void (*sqlite3_syscall_ptr)(void); typedef 1807 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1808 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); 38442 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ 38443 sqlite3_syscall_ptr pDefault; /* Default value */ 38445 { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, 38448 { "close", (sqlite3_syscall_ptr)close, 0 }, 38451 { "access", (sqlite3_syscall_ptr)access, 0 }, 38454 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, 38457 { "stat", (sqlite3_syscall_ptr)stat, 0 }, [all …]
|
| D | shell.c | 8794 static int apndSetSystemCall(sqlite3_vfs*, const char*,sqlite3_syscall_ptr); 8795 static sqlite3_syscall_ptr apndGetSystemCall(sqlite3_vfs*, const char *z); 9248 sqlite3_syscall_ptr pCall in apndSetSystemCall() 9252 static sqlite3_syscall_ptr apndGetSystemCall( in apndGetSystemCall()
|