Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_syscall_ptr

1574 typedef void (*sqlite3_syscall_ptr)(void);
1604 int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
1605 sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
25344 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
25345 sqlite3_syscall_ptr pDefault; /* Default value */
25347 { "open", (sqlite3_syscall_ptr)posixOpen, 0 },
25350 { "close", (sqlite3_syscall_ptr)close, 0 },
25353 { "access", (sqlite3_syscall_ptr)access, 0 },
25356 { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 },
25359 { "stat", (sqlite3_syscall_ptr)stat, 0 },
25372 { "fstat", (sqlite3_syscall_ptr)fstat, 0 },
25376 { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 },
25379 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
25382 { "read", (sqlite3_syscall_ptr)read, 0 },
25386 { "pread", (sqlite3_syscall_ptr)pread, 0 },
25388 { "pread", (sqlite3_syscall_ptr)0, 0 },
25393 { "pread64", (sqlite3_syscall_ptr)pread64, 0 },
25395 { "pread64", (sqlite3_syscall_ptr)0, 0 },
25404 { "write", (sqlite3_syscall_ptr)write, 0 },
25408 { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 },
25410 { "pwrite", (sqlite3_syscall_ptr)0, 0 },
25416 { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 },
25418 { "pwrite64", (sqlite3_syscall_ptr)0, 0 },
25430 { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 },
25432 { "fchmod", (sqlite3_syscall_ptr)0, 0 },
25437 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 },
25439 { "fallocate", (sqlite3_syscall_ptr)0, 0 },
25443 { "unlink", (sqlite3_syscall_ptr)unlink, 0 },
25446 { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 },
25449 { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 },
25452 { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 },
25455 { "fchown", (sqlite3_syscall_ptr)fchown, 0 },
25458 { "umask", (sqlite3_syscall_ptr)umask, 0 },
25472 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
25512 static sqlite3_syscall_ptr unixGetSystemCall(
32327 # define SYSCALL sqlite3_syscall_ptr
32353 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
32354 sqlite3_syscall_ptr pDefault; /* Default value */
32768 sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */
32808 static sqlite3_syscall_ptr winGetSystemCall(