Home
last modified time | relevance | path

Searched refs:SQLITE_IOERR (Results 1 – 3 of 3) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.h457 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro
500 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8))
501 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8))
502 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8))
503 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8))
504 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8))
505 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8))
506 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8))
507 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8))
508 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8))
[all …]
H A Dsqlite3.c776 #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ macro
819 #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8))
820 #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8))
821 #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8))
822 #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8))
823 #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8))
824 #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8))
825 #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8))
826 #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8))
827 #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8))
[all …]
H A Dshell.c8141 sqlite3_result_error_code(ctx, SQLITE_IOERR); in readFileContents()
9830 if( SQLITE_OK!=apndWriteMark(paf, pFile, size) ) return SQLITE_IOERR; in apndTruncate()
9947 return SQLITE_IOERR; /* Cannot read what is not yet there. */ in apndFetch()
16491 case SQLITE_IOERR: zVal = "SQLITE_IOERR"; break; in vfstrace_errcode_name()