Home | History | Annotate | Download | only in orig

Lines Matching defs:mayAbort

11917   u8 mayAbort;         /* True if statement may throw an ABORT exception */
62606 ** Then check that the value of Parse.mayAbort is true if an
62611 ** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) );
62613 SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){
62635 /* Return true if hasAbort==mayAbort. Or if a malloc failure occurred.
62640 return ( v->db->mallocFailed || hasAbort==mayAbort );
63885 p->usesStmtJournal = (u8)(pParse->isMultiWrite && pParse->mayAbort);
86245 || sqlite3VdbeAssertMayAbort(v, pParse->mayAbort));
90018 ** Technically, we only need to set the mayAbort flag if the
90030 pToplevel->mayAbort = 1;
93860 sqlite3ParseToplevel(pParse)->mayAbort = 1;
94053 sqlite3ParseToplevel(pParse)->mayAbort = 1;