Lines Matching refs:sqlite3_syscall_ptr

1671 typedef void (*sqlite3_syscall_ptr)(void);
1701 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1702 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
23453 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
23454 sqlite3_syscall_ptr pDefault; /* Default value */
23456 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
23459 { "close", (sqlite3_syscall_ptr)close, 0 },
23462 { "access", (sqlite3_syscall_ptr)access, 0 },
23465 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
23468 { "stat", (sqlite3_syscall_ptr)stat, 0 },
23481 { "fstat", (sqlite3_syscall_ptr)fstat, 0 },
23485 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 },
23488 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
23491 { "read", (sqlite3_syscall_ptr)read, 0 },
23495 { "pread", (sqlite3_syscall_ptr)pread, 0 },
23497 { "pread", (sqlite3_syscall_ptr)0, 0 },
23502 { "pread64", (sqlite3_syscall_ptr)pread64, 0 },
23504 { "pread64", (sqlite3_syscall_ptr)0, 0 },
23508 { "write", (sqlite3_syscall_ptr)write, 0 },
23512 { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 },
23514 { "pwrite", (sqlite3_syscall_ptr)0, 0 },
23520 { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 },
23522 { "pwrite64", (sqlite3_syscall_ptr)0, 0 },
23527 { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 },
23531 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 },
23533 { "fallocate", (sqlite3_syscall_ptr)0, 0 },
23537 { "unlink", (sqlite3_syscall_ptr)unlink, 0 },
23540 { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 },
23543 { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 },
23546 { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 },
23549 { "fchown", (sqlite3_syscall_ptr)posixFchown, 0 },
23552 { "mmap", (sqlite3_syscall_ptr)mmap, 0 },
23555 { "munmap", (sqlite3_syscall_ptr)munmap, 0 },
23559 { "mremap", (sqlite3_syscall_ptr)mremap, 0 },
23561 { "mremap", (sqlite3_syscall_ptr)0, 0 },
23576 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
23616 static sqlite3_syscall_ptr unixGetSystemCall(
31019 # define SYSCALL sqlite3_syscall_ptr
31038 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
31039 sqlite3_syscall_ptr pDefault; /* Default value */
31638 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
31678 static sqlite3_syscall_ptr winGetSystemCall(