/external/rust/crates/libsqlite3-sys/src/ |
D | error.rs | 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); [all …]
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.h | 432 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 475 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 476 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 477 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 478 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 479 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 480 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 481 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 482 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 483 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
D | wasm32-wasi-vfs.c | 418 return SQLITE_IOERR; in demoOpen()
|
D | sqlite3.c | 1495 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 1538 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 1539 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 1540 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 1541 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 1542 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 1543 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 1544 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 1545 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 1546 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
D | bindgen_bundled_version.rs | 17 pub const SQLITE_IOERR: i32 = 10; constant
|
/external/sqlite/dist/ |
D | sqlite3.h | 432 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 475 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 476 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 477 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 478 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 479 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 480 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 481 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 482 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 483 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
D | sqlite3.c | 1471 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 1514 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 1515 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 1516 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 1517 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 1518 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 1519 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 1520 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 1521 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 1522 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
D | shell.c | 2270 sqlite3_result_error_code(ctx, SQLITE_IOERR); in readFileContents()
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 432 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 475 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 476 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 477 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 478 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 479 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 480 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 481 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 482 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 483 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
D | sqlite3.c | 1471 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 1514 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 1515 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 1516 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 1517 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 1518 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 1519 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 1520 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 1521 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 1522 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
D | shell.c | 2265 sqlite3_result_error_code(ctx, SQLITE_IOERR); in readFileContents()
|
/external/python/cpython3/Modules/_sqlite/ |
D | util.c | 65 case SQLITE_IOERR: in _pysqlite_seterror()
|
/external/python/cpython2/Modules/_sqlite/ |
D | util.c | 78 case SQLITE_IOERR: in _pysqlite_seterror()
|
/external/javasqlite/src/main/java/SQLite/ |
D | Constants.java | 27 public static final int SQLITE_IOERR = 10; /* Some kind of disk I/O error occurred */ field in Constants
|
/external/tensorflow/tensorflow/core/lib/db/ |
D | sqlite.cc | 64 case SQLITE_IOERR: // Some kind of disk I/O error occurred in GetTfErrorCode()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowSQLiteConnection.java | 753 case SQLiteConstants.SQLITE_IOERR: return new SQLiteDiskIOException(message);
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowLegacySQLiteConnection.java | 892 case SQLiteConstants.SQLITE_IOERR: return new SQLiteDiskIOException(message);
|
/external/rust/crates/libsqlite3-sys/bindgen-bindings/ |
D | bindgen_3.6.8.rs | 16 pub const SQLITE_IOERR: i32 = 10; constant
|
D | bindgen_3.6.23.rs | 18 pub const SQLITE_IOERR: i32 = 10; constant
|
D | bindgen_3.7.16.rs | 18 pub const SQLITE_IOERR: i32 = 10; constant
|
D | bindgen_3.7.7.rs | 18 pub const SQLITE_IOERR: i32 = 10; constant
|