Searched refs:SQLITE_IOERR (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
H A D | sqlite3.d | 123 SQLITE_IOERR = 10, /** Some kind of disk I/O error occurred */ enumerator 152 SQLITE_IOERR_READ = (SQLITE_IOERR | (1 << 8)), 153 SQLITE_IOERR_SHORT_READ = (SQLITE_IOERR | (2 << 8)), 154 SQLITE_IOERR_WRITE = (SQLITE_IOERR | (3 << 8)), 155 SQLITE_IOERR_FSYNC = (SQLITE_IOERR | (4 << 8)), 156 SQLITE_IOERR_DIR_FSYNC = (SQLITE_IOERR | (5 << 8)), 157 SQLITE_IOERR_TRUNCATE = (SQLITE_IOERR | (6 << 8)), 158 SQLITE_IOERR_FSTAT = (SQLITE_IOERR | (7 << 8)), 159 SQLITE_IOERR_UNLOCK = (SQLITE_IOERR | (8 << 8)), 160 SQLITE_IOERR_RDLOCK = (SQLITE_IOERR | (9 << 8)), [all …]
|
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | sqlite3.h | 455 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 498 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 499 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 500 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 501 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 502 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 503 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 504 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 505 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 506 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
H A D | sqlite3.c | 768 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro 811 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) 812 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) 813 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) 814 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) 815 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) 816 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) 817 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) 818 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) 819 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) [all …]
|
H A D | shell.c | 7251 sqlite3_result_error_code(ctx, SQLITE_IOERR); in readFileContents() 8923 if( SQLITE_OK!=apndWriteMark(paf, pFile, size) ) return SQLITE_IOERR; in apndTruncate() 9040 return SQLITE_IOERR; /* Cannot read what is not yet there. */ in apndFetch()
|
/netbsd-src/lib/lua/sqlite/ |
H A D | sqlite.c | 376 { "IOERR", SQLITE_IOERR },
|
/netbsd-src/usr.sbin/makemandb/ |
H A D | apropos-utils.c | 694 if (rc == SQLITE_IOERR) { in execute_search_query()
|