Lines Matching refs:SQLITE_IOERR
76 super::SQLITE_IOERR => ErrorCode::SystemIoFailure, in new()
133 const SQLITE_IOERR_SHMOPEN: c_int = super::SQLITE_IOERR | (18 << 8);
134 const SQLITE_IOERR_SHMSIZE: c_int = super::SQLITE_IOERR | (19 << 8);
135 const SQLITE_IOERR_SHMLOCK: c_int = super::SQLITE_IOERR | (20 << 8);
136 const SQLITE_IOERR_SHMMAP: c_int = super::SQLITE_IOERR | (21 << 8);
137 const SQLITE_IOERR_SEEK: c_int = super::SQLITE_IOERR | (22 << 8);
138 const SQLITE_IOERR_DELETE_NOENT: c_int = super::SQLITE_IOERR | (23 << 8);
139 const SQLITE_IOERR_MMAP: c_int = super::SQLITE_IOERR | (24 << 8);
140 const SQLITE_IOERR_GETTEMPPATH: c_int = super::SQLITE_IOERR | (25 << 8);
141 const SQLITE_IOERR_CONVPATH: c_int = super::SQLITE_IOERR | (26 << 8);
142 const SQLITE_IOERR_VNODE: c_int = super::SQLITE_IOERR | (27 << 8);
143 const SQLITE_IOERR_AUTH: c_int = super::SQLITE_IOERR | (28 << 8);
144 const SQLITE_IOERR_BEGIN_ATOMIC: c_int = super::SQLITE_IOERR | (29 << 8);
145 const SQLITE_IOERR_COMMIT_ATOMIC: c_int = super::SQLITE_IOERR | (30 << 8);
146 const SQLITE_IOERR_ROLLBACK_ATOMIC: c_int = super::SQLITE_IOERR | (31 << 8);
147 const SQLITE_IOERR_DATA: c_int = super::SQLITE_IOERR | (32 << 8);
206 super::SQLITE_IOERR => "Some kind of disk I/O error occurred", in code_to_str()