Lines Matching refs:lineno
3718 int sqlite3ReportError(int iErr, int lineno, const char *zType){ in sqlite3ReportError() argument
3720 zType, lineno, 20+sqlite3_sourceid()); in sqlite3ReportError()
3723 int sqlite3CorruptError(int lineno){ in sqlite3CorruptError() argument
3725 return sqlite3ReportError(SQLITE_CORRUPT, lineno, "database corruption"); in sqlite3CorruptError()
3727 int sqlite3MisuseError(int lineno){ in sqlite3MisuseError() argument
3729 return sqlite3ReportError(SQLITE_MISUSE, lineno, "misuse"); in sqlite3MisuseError()
3731 int sqlite3CantopenError(int lineno){ in sqlite3CantopenError() argument
3733 return sqlite3ReportError(SQLITE_CANTOPEN, lineno, "cannot open file"); in sqlite3CantopenError()
3736 int sqlite3CorruptPgnoError(int lineno, Pgno pgno){ in sqlite3CorruptPgnoError() argument
3740 return sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); in sqlite3CorruptPgnoError()
3744 int sqlite3NomemError(int lineno){ in sqlite3NomemError() argument
3746 return sqlite3ReportError(SQLITE_NOMEM, lineno, "OOM"); in sqlite3NomemError()
3748 int sqlite3IoerrnomemError(int lineno){ in sqlite3IoerrnomemError() argument
3750 return sqlite3ReportError(SQLITE_IOERR_NOMEM, lineno, "I/O OOM error"); in sqlite3IoerrnomemError()