Home
last modified time | relevance | path

Searched refs:sqlite3_syscall_ptr (Results 1 – 3 of 3) sorted by relevance

/third_party/sqlite/include/
Dsqlite3.h1463 typedef void (*sqlite3_syscall_ptr)(void); typedef
1493 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1494 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
/third_party/sqlite/src/
Dsqlite3.c1773 typedef void (*sqlite3_syscall_ptr)(void); typedef
1803 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1804 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
37201 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
37202 sqlite3_syscall_ptr pDefault; /* Default value */
37204 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
37207 { "close", (sqlite3_syscall_ptr)posixClose, 0 },
37210 { "access", (sqlite3_syscall_ptr)access, 0 },
37213 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
37216 { "stat", (sqlite3_syscall_ptr)stat, 0 },
[all …]
Dshell.c6339 static int apndSetSystemCall(sqlite3_vfs*, const char*,sqlite3_syscall_ptr);
6340 static sqlite3_syscall_ptr apndGetSystemCall(sqlite3_vfs*, const char *z);
6793 sqlite3_syscall_ptr pCall in apndSetSystemCall()
6797 static sqlite3_syscall_ptr apndGetSystemCall( in apndGetSystemCall()