Home | History | Annotate | Download | only in dist

Lines Matching refs:SQLITE_CORRUPT

707 #define SQLITE_CORRUPT     11   /* The database disk image is malformed */
784 #define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8))
3492 ** in incorrect query results and/or [SQLITE_CORRUPT] errors.
4424 ** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth)
9315 ** which returns SQLITE_CORRUPT if it is passed a patchset. Similarly,
9317 ** sqlite3changeset_xxx APIs also provokes an SQLITE_CORRUPT error.
9411 ** codes include SQLITE_CORRUPT (if the changeset buffer is corrupt) or
9600 ** function (for example an [SQLITE_CORRUPT] in [sqlite3changeset_next()] or an
9793 ** appears to be corrupt and the corruption is detected, SQLITE_CORRUPT is
53669 assert( rc==SQLITE_OK || rc==SQLITE_FULL || rc==SQLITE_CORRUPT
60668 ** detected then *pRc is set to SQLITE_CORRUPT and NULL is returned.
60728 ** an error code (usually SQLITE_CORRUPT).
60825 ** routine and return SQLITE_CORRUPT if any problems are found.
60983 ** SQLITE_CORRUPT. Note that a return of SQLITE_OK does not
61045 ** past the end of a page boundary and causes SQLITE_CORRUPT to be
61288 assert( pgno!=0 || rc==SQLITE_CORRUPT );
61357 ** call to btreeInitPage() will likely return SQLITE_CORRUPT.
62100 ** well-formed database file, then SQLITE_CORRUPT is returned.
64024 ** This function returns SQLITE_CORRUPT if the page-header flags field of
64159 ** return an SQLITE_CORRUPT error.
64530 (pIdxKey->errCode!=SQLITE_CORRUPT || c==0)
64542 if( pIdxKey->errCode ) rc = SQLITE_CORRUPT;
68456 assert( rc==SQLITE_CORRUPT ); /* The only possible error from InitPage */
68936 ** no modifications are made and SQLITE_CORRUPT is returned.
75207 if( szHdr1>98307 ) return SQLITE_CORRUPT;
75563 ** SQLITE_CORRUPT and return 0. If an OOM error is encountered,
76030 ** allocated. Free the m object and return SQLITE_CORRUPT. */
82617 ** Or, if P2 is 0, raise an SQLITE_CORRUPT error. If P1 does contain
82641 ** SQLITE_CORRUPT error. If P1 does contain a record with rowid P3 then
141954 case SQLITE_CORRUPT: zName = "SQLITE_CORRUPT"; break;
142025 /* SQLITE_CORRUPT */ "database disk image is malformed",
143925 ** The following routines are substitutes for constants SQLITE_CORRUPT,
143942 return reportError(SQLITE_CORRUPT, lineno, "database corruption");
171686 p->rc = SQLITE_CORRUPT;
171723 rc = SQLITE_CORRUPT;
173065 p->rc = SQLITE_CORRUPT;
177815 ** or SQLITE_CORRUPT.
196046 ** Return SQLITE_CORRUPT if any of the internal checks fail, or if the
200205 ** table. Return SQLITE_OK if they do, or SQLITE_CORRUPT if not. Return