Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h455 #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 …]
/third_party/python/Modules/_sqlite/
Dutil.c65 case SQLITE_IOERR: in _pysqlite_seterror()
/third_party/sqlite/src/
Dshell.c4798 sqlite3_result_error_code(ctx, SQLITE_IOERR); in readFileContents()
6468 if( SQLITE_OK!=apndWriteMark(paf, pFile, size) ) return SQLITE_IOERR; in apndTruncate()
6585 return SQLITE_IOERR; /* Cannot read what is not yet there. */ in apndFetch()
/third_party/chromium/patch/
D0003-ohos-1115.patch85326 -** Throw an SQLITE_IOERR if there are difficulties pulling the file
85360 - sqlite3_result_error_code(ctx, SQLITE_IOERR);
88091 - if( SQLITE_OK!=apndWriteMark(paf, pFile, size) ) return SQLITE_IOERR;
88463 - return SQLITE_IOERR; /* Cannot read what is not yet there. */
89672 +** Throw an SQLITE_IOERR if there are difficulties pulling the file
89863 + sqlite3_result_error_code(ctx, SQLITE_IOERR);
92709 + if( SQLITE_OK!=apndWriteMark(paf, pFile, size) ) return SQLITE_IOERR;
93046 + return SQLITE_IOERR; /* Cannot read what is not yet there. */
100788 SimulateIOError( return SQLITE_IOERR );
123741 -** Throw an SQLITE_IOERR if there are difficulties pulling the file
[all …]