Searched refs:sqlite3_syscall_ptr (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 1426 typedef void (*sqlite3_syscall_ptr)(void); typedef 1456 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1457 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
|
| H A D | sqlite3.c | 1732 typedef void (*sqlite3_syscall_ptr)(void); typedef 34623 sqlite3_syscall_ptr pDefault; /* Default value */ 34625 { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, 34628 { "close", (sqlite3_syscall_ptr)close, 0 }, 34631 { "access", (sqlite3_syscall_ptr)access, 0 }, 34634 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, 34637 { "stat", (sqlite3_syscall_ptr)stat, 0 }, 34851 static sqlite3_syscall_ptr unixGetSystemCall( 42856 # define SYSCALL sqlite3_syscall_ptr 42876 sqlite3_syscall_ptr pDefault; /* Default value */ [all …]
|
| H A D | shell.c | 3860 static int apndSetSystemCall(sqlite3_vfs*, const char*,sqlite3_syscall_ptr); 3861 static sqlite3_syscall_ptr apndGetSystemCall(sqlite3_vfs*, const char *z); 4314 sqlite3_syscall_ptr pCall in apndSetSystemCall() 4318 static sqlite3_syscall_ptr apndGetSystemCall( in apndGetSystemCall()
|