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);
40592 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
40593 sqlite3_syscall_ptr pDefault; /* Default value */
40595 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
40598 { "close", (sqlite3_syscall_ptr)close, 0 },
40601 { "access", (sqlite3_syscall_ptr)access, 0 },
40604 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
40607 { "stat", (sqlite3_syscall_ptr)stat, 0 },
[all …]
H A Dshell.c11626 static int apndSetSystemCall(sqlite3_vfs*, const char*,sqlite3_syscall_ptr);
11627 static sqlite3_syscall_ptr apndGetSystemCall(sqlite3_vfs*, const char *z);
12080 sqlite3_syscall_ptr pCall in apndSetSystemCall()
12084 static sqlite3_syscall_ptr apndGetSystemCall( in apndGetSystemCall()
18415 static int vfstraceSetSystemCall(sqlite3_vfs*,const char*, sqlite3_syscall_ptr);
18416 static sqlite3_syscall_ptr vfstraceGetSystemCall(sqlite3_vfs*, const char *);
19295 sqlite3_syscall_ptr pFunc in vfstraceSetSystemCall()
19301 static sqlite3_syscall_ptr vfstraceGetSystemCall( in vfstraceGetSystemCall()