Searched refs:sqlite3_syscall_ptr (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.h | 957 typedef void (*sqlite3_syscall_ptr)(void); typedef 987 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 988 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
|
| H A D | sqlite3.c | 1510 typedef void (*sqlite3_syscall_ptr)(void); typedef 24897 sqlite3_syscall_ptr pDefault; /* Default value */ 24899 { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, 24902 { "close", (sqlite3_syscall_ptr)close, 0 }, 24905 { "access", (sqlite3_syscall_ptr)access, 0 }, 24908 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, 24911 { "stat", (sqlite3_syscall_ptr)stat, 0 }, 24924 { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, 24928 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 }, 24931 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 }, [all …]
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 1365 typedef void (*sqlite3_syscall_ptr)(void); typedef 1395 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 1396 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
|
| H A D | sqlite3.c | 2404 typedef void (*sqlite3_syscall_ptr)(void); typedef 33837 sqlite3_syscall_ptr pDefault; /* Default value */ 33839 { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, 33842 { "close", (sqlite3_syscall_ptr)close, 0 }, 33845 { "access", (sqlite3_syscall_ptr)access, 0 }, 33848 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, 33851 { "stat", (sqlite3_syscall_ptr)stat, 0 }, 34065 static sqlite3_syscall_ptr unixGetSystemCall( 42073 # define SYSCALL sqlite3_syscall_ptr 42093 sqlite3_syscall_ptr pDefault; /* Default value */ [all …]
|
| H A D | shell.c | 3738 static int apndSetSystemCall(sqlite3_vfs*, const char*,sqlite3_syscall_ptr); 3739 static sqlite3_syscall_ptr apndGetSystemCall(sqlite3_vfs*, const char *z); 4129 sqlite3_syscall_ptr pCall in apndSetSystemCall() 4133 static sqlite3_syscall_ptr apndGetSystemCall( in apndGetSystemCall()
|