Home | History | Annotate | Download | only in orig

Lines Matching defs:TRIGGER_BEFORE

12061   u8 tr_tm;               /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
12078 #define TRIGGER_BEFORE 1
91462 pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf
91482 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel
95574 if( tmask & TRIGGER_BEFORE ){
95635 sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
107307 TRIGGER_BEFORE : TRIGGER_AFTER;
107705 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
107922 (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"),
108096 int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
108105 assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER );
108147 ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE
108149 ** included in the returned mask if the TRIGGER_BEFORE bit is set in the
108158 int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
108312 int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
108656 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError
108688 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError
108698 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){
108716 if( tmask&TRIGGER_BEFORE ){
108719 TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue);