Searched refs:sqlite3_syscall_ptr (Results 1 – 2 of 2) sorted by relevance
/PHP-5.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.h | 925 typedef void (*sqlite3_syscall_ptr)(void); typedef 955 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); 956 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
|
H A D | sqlite3.c | 1472 typedef void (*sqlite3_syscall_ptr)(void); typedef 24779 sqlite3_syscall_ptr pDefault; /* Default value */ 24781 { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, 24784 { "close", (sqlite3_syscall_ptr)close, 0 }, 24787 { "access", (sqlite3_syscall_ptr)access, 0 }, 24790 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, 24793 { "stat", (sqlite3_syscall_ptr)stat, 0 }, 24806 { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, 24810 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 }, 24813 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 }, [all …]
|
Completed in 332 milliseconds