Lines Matching refs:sqlite3_syscall_ptr

1168 typedef void (*sqlite3_syscall_ptr)(void);  typedef
1198 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1199 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
23953 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
23954 sqlite3_syscall_ptr pDefault; /* Default value */
23956 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
23959 { "close", (sqlite3_syscall_ptr)close, 0 },
23962 { "access", (sqlite3_syscall_ptr)access, 0 },
23965 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
23968 { "stat", (sqlite3_syscall_ptr)stat, 0 },
23981 { "fstat", (sqlite3_syscall_ptr)fstat, 0 },
23985 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 },
23988 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
23991 { "read", (sqlite3_syscall_ptr)read, 0 },
23995 { "pread", (sqlite3_syscall_ptr)pread, 0 },
23997 { "pread", (sqlite3_syscall_ptr)0, 0 },
24002 { "pread64", (sqlite3_syscall_ptr)pread64, 0 },
24004 { "pread64", (sqlite3_syscall_ptr)0, 0 },
24008 { "write", (sqlite3_syscall_ptr)write, 0 },
24012 { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 },
24014 { "pwrite", (sqlite3_syscall_ptr)0, 0 },
24020 { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 },
24022 { "pwrite64", (sqlite3_syscall_ptr)0, 0 },
24027 { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 },
24031 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 },
24033 { "fallocate", (sqlite3_syscall_ptr)0, 0 },
24037 { "unlink", (sqlite3_syscall_ptr)unlink, 0 },
24040 { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 },
24043 { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 },
24046 { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 },
24049 { "fchown", (sqlite3_syscall_ptr)posixFchown, 0 },
24053 { "mmap", (sqlite3_syscall_ptr)mmap, 0 },
24056 { "munmap", (sqlite3_syscall_ptr)munmap, 0 },
24060 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
24062 { "mremap", (sqlite3_syscall_ptr)0, 0 },
24078 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
24118 static sqlite3_syscall_ptr unixGetSystemCall(
31704 # define SYSCALL sqlite3_syscall_ptr
31723 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
31724 sqlite3_syscall_ptr pDefault; /* Default value */
32342 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
32382 static sqlite3_syscall_ptr winGetSystemCall(