Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h1512 typedef void (*sqlite3_syscall_ptr)(void); typedef
1542 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1543 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
H A Dsqlite3.c1833 typedef void (*sqlite3_syscall_ptr)(void); typedef
1863 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1864 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
40622 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
40623 sqlite3_syscall_ptr pDefault; /* Default value */
40625 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
40628 { "close", (sqlite3_syscall_ptr)close, 0 },
40631 { "access", (sqlite3_syscall_ptr)access, 0 },
40634 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
40637 { "stat", (sqlite3_syscall_ptr)stat, 0 },
[all …]
H A Dshell.c11657 static int apndSetSystemCall(sqlite3_vfs*, const char*,sqlite3_syscall_ptr);
11658 static sqlite3_syscall_ptr apndGetSystemCall(sqlite3_vfs*, const char *z);
12111 sqlite3_syscall_ptr pCall in apndSetSystemCall()
12115 static sqlite3_syscall_ptr apndGetSystemCall( in apndGetSystemCall()
18453 static int vfstraceSetSystemCall(sqlite3_vfs*,const char*, sqlite3_syscall_ptr);
18454 static sqlite3_syscall_ptr vfstraceGetSystemCall(sqlite3_vfs*, const char *);
19333 sqlite3_syscall_ptr pFunc in vfstraceSetSystemCall()
19339 static sqlite3_syscall_ptr vfstraceGetSystemCall( in vfstraceGetSystemCall()