Home | History | Annotate | Download | only in dist

Lines Matching defs:TRIGGER_BEFORE

12061   u8 tr_tm;               /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
12078 #define TRIGGER_BEFORE 1
91482 pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf
91502 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel
95594 if( tmask & TRIGGER_BEFORE ){
95655 sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
107327 pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER;
107725 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
107942 (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"),
108116 int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
108125 assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER );
108167 ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE
108169 ** included in the returned mask if the TRIGGER_BEFORE bit is set in the
108178 int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
108332 int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
108676 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError
108708 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError
108718 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){
108736 if( tmask&TRIGGER_BEFORE ){
108739 TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue);