Lines Matching refs:sqlite3_syscall_ptr

1375 typedef void (*sqlite3_syscall_ptr)(void);  typedef
1405 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1406 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
25796 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
25797 sqlite3_syscall_ptr pDefault; /* Default value */
25799 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
25802 { "close", (sqlite3_syscall_ptr)close, 0 },
25805 { "access", (sqlite3_syscall_ptr)access, 0 },
25808 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
25811 { "stat", (sqlite3_syscall_ptr)stat, 0 },
25824 { "fstat", (sqlite3_syscall_ptr)fstat, 0 },
25828 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 },
25831 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
25834 { "read", (sqlite3_syscall_ptr)read, 0 },
25838 { "pread", (sqlite3_syscall_ptr)pread, 0 },
25840 { "pread", (sqlite3_syscall_ptr)0, 0 },
25845 { "pread64", (sqlite3_syscall_ptr)pread64, 0 },
25847 { "pread64", (sqlite3_syscall_ptr)0, 0 },
25851 { "write", (sqlite3_syscall_ptr)write, 0 },
25855 { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 },
25857 { "pwrite", (sqlite3_syscall_ptr)0, 0 },
25863 { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 },
25865 { "pwrite64", (sqlite3_syscall_ptr)0, 0 },
25870 { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 },
25874 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 },
25876 { "fallocate", (sqlite3_syscall_ptr)0, 0 },
25880 { "unlink", (sqlite3_syscall_ptr)unlink, 0 },
25883 { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 },
25886 { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 },
25889 { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 },
25892 { "fchown", (sqlite3_syscall_ptr)posixFchown, 0 },
25896 { "mmap", (sqlite3_syscall_ptr)mmap, 0 },
25899 { "munmap", (sqlite3_syscall_ptr)munmap, 0 },
25903 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
25905 { "mremap", (sqlite3_syscall_ptr)0, 0 },
25908 { "getpagesize", (sqlite3_syscall_ptr)unixGetpagesize, 0 },
25924 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
25964 static sqlite3_syscall_ptr unixGetSystemCall(
33635 # define SYSCALL sqlite3_syscall_ptr
33654 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
33655 sqlite3_syscall_ptr pDefault; /* Default value */
34316 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
34356 static sqlite3_syscall_ptr winGetSystemCall(