Searched refs:sqlite3_syscall_ptr (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
H A D | sqlite3.d | 359 alias sqlite3_syscall_ptr = void function(); 391 int function(sqlite3_vfs*, const char * zName, sqlite3_syscall_ptr) xSetSystemCall; 392 sqlite3_syscall_ptr function(sqlite3_vfs*, const char * zName) xGetSystemCall;
|
/netbsd-src/external/public-domain/sqlite/dist/ |
H A 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);
|
H A 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 …]
|
H A 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()
|