Lines Matching refs:sqlite3_syscall_ptr

2318 typedef void (*sqlite3_syscall_ptr)(void);  typedef
2348 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
2349 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
31116 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
31117 sqlite3_syscall_ptr pDefault; /* Default value */
31119 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
31122 { "close", (sqlite3_syscall_ptr)close, 0 },
31125 { "access", (sqlite3_syscall_ptr)access, 0 },
31128 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
31131 { "stat", (sqlite3_syscall_ptr)stat, 0 },
31144 { "fstat", (sqlite3_syscall_ptr)fstat, 0 },
31148 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 },
31151 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
31154 { "read", (sqlite3_syscall_ptr)read, 0 },
31158 { "pread", (sqlite3_syscall_ptr)pread, 0 },
31160 { "pread", (sqlite3_syscall_ptr)0, 0 },
31165 { "pread64", (sqlite3_syscall_ptr)pread64, 0 },
31167 { "pread64", (sqlite3_syscall_ptr)0, 0 },
31171 { "write", (sqlite3_syscall_ptr)write, 0 },
31175 { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 },
31177 { "pwrite", (sqlite3_syscall_ptr)0, 0 },
31183 { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 },
31185 { "pwrite64", (sqlite3_syscall_ptr)0, 0 },
31190 { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 },
31194 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 },
31196 { "fallocate", (sqlite3_syscall_ptr)0, 0 },
31200 { "unlink", (sqlite3_syscall_ptr)unlink, 0 },
31203 { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 },
31206 { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 },
31209 { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 },
31213 { "fchown", (sqlite3_syscall_ptr)fchown, 0 },
31215 { "fchown", (sqlite3_syscall_ptr)0, 0 },
31219 { "geteuid", (sqlite3_syscall_ptr)geteuid, 0 },
31223 { "mmap", (sqlite3_syscall_ptr)mmap, 0 },
31225 { "mmap", (sqlite3_syscall_ptr)0, 0 },
31230 { "munmap", (sqlite3_syscall_ptr)munmap, 0 },
31232 { "munmap", (sqlite3_syscall_ptr)0, 0 },
31237 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
31239 { "mremap", (sqlite3_syscall_ptr)0, 0 },
31244 { "getpagesize", (sqlite3_syscall_ptr)unixGetpagesize, 0 },
31246 { "getpagesize", (sqlite3_syscall_ptr)0, 0 },
31251 { "readlink", (sqlite3_syscall_ptr)readlink, 0 },
31253 { "readlink", (sqlite3_syscall_ptr)0, 0 },
31258 { "lstat", (sqlite3_syscall_ptr)lstat, 0 },
31260 { "lstat", (sqlite3_syscall_ptr)0, 0 },
31265 { "ioctl", (sqlite3_syscall_ptr)ioctl, 0 },
31267 { "ioctl", (sqlite3_syscall_ptr)0, 0 },
31296 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
31336 static sqlite3_syscall_ptr unixGetSystemCall(
39204 # define SYSCALL sqlite3_syscall_ptr
39223 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
39224 sqlite3_syscall_ptr pDefault; /* Default value */
39885 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
39925 static sqlite3_syscall_ptr winGetSystemCall(