Searched defs:unixFile (Results 1 – 1 of 1) sorted by relevance
202 typedef struct unixFile unixFile; typedef203 struct unixFile { struct204 sqlite3_io_methods const *pMethod; /* Always the first entry */205 unixInodeInfo *pInode; /* Info about locks on this inode */206 int h; /* The file descriptor */207 unsigned char eFileLock; /* The type of lock held on this fd */208 unsigned char ctrlFlags; /* Behavioral bits. UNIXFILE_* flags */209 int lastErrno; /* The unix errno from last I/O error */210 void *lockingContext; /* Locking style specific state */211 UnixUnusedFd *pUnused; /* Pre-allocated UnixUnusedFd */[all …]