Searched refs:eError (Results 1 – 1 of 1) sorted by relevance
30950 SQLITE_PRIVATE void sqlite3StrAccumSetError(StrAccum *p, u8 eError){ in sqlite3StrAccumSetError() argument30951 assert( eError==SQLITE_NOMEM || eError==SQLITE_TOOBIG ); in sqlite3StrAccumSetError()30952 p->accError = eError; in sqlite3StrAccumSetError()30954 if( eError==SQLITE_TOOBIG ) sqlite3ErrorToParser(p->db, eError); in sqlite3StrAccumSetError()