Lines Matching refs:sqlite3_syscall_ptr

1258 typedef void (*sqlite3_syscall_ptr)(void);
1288 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1289 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
24610 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
24611 sqlite3_syscall_ptr pDefault; /* Default value */
24613 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
24616 { "close", (sqlite3_syscall_ptr)close, 0 },
24619 { "access", (sqlite3_syscall_ptr)access, 0 },
24622 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
24625 { "stat", (sqlite3_syscall_ptr)stat, 0 },
24638 { "fstat", (sqlite3_syscall_ptr)fstat, 0 },
24642 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 },
24645 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
24648 { "read", (sqlite3_syscall_ptr)read, 0 },
24652 { "pread", (sqlite3_syscall_ptr)pread, 0 },
24654 { "pread", (sqlite3_syscall_ptr)0, 0 },
24659 { "pread64", (sqlite3_syscall_ptr)pread64, 0 },
24661 { "pread64", (sqlite3_syscall_ptr)0, 0 },
24665 { "write", (sqlite3_syscall_ptr)write, 0 },
24669 { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 },
24671 { "pwrite", (sqlite3_syscall_ptr)0, 0 },
24677 { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 },
24679 { "pwrite64", (sqlite3_syscall_ptr)0, 0 },
24684 { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 },
24688 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 },
24690 { "fallocate", (sqlite3_syscall_ptr)0, 0 },
24694 { "unlink", (sqlite3_syscall_ptr)unlink, 0 },
24697 { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 },
24700 { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 },
24703 { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 },
24706 { "fchown", (sqlite3_syscall_ptr)posixFchown, 0 },
24710 { "mmap", (sqlite3_syscall_ptr)mmap, 0 },
24713 { "munmap", (sqlite3_syscall_ptr)munmap, 0 },
24717 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
24719 { "mremap", (sqlite3_syscall_ptr)0, 0 },
24722 { "getpagesize", (sqlite3_syscall_ptr)unixGetpagesize, 0 },
24738 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
24778 static sqlite3_syscall_ptr unixGetSystemCall(
32402 # define SYSCALL sqlite3_syscall_ptr
32421 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
32422 sqlite3_syscall_ptr pDefault; /* Default value */
33056 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
33096 static sqlite3_syscall_ptr winGetSystemCall(