Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:TRIGGER_BEFORE

10648   u8 tr_tm;               /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
10665 #define TRIGGER_BEFORE 1
81566 pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf
81583 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel
85292 if( tmask & TRIGGER_BEFORE ){
85353 sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
94822 pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER;
95222 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
95439 (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"),
95611 int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
95620 assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER );
95662 ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE
95664 ** included in the returned mask if the TRIGGER_BEFORE bit is set in the
95673 int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
95819 int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
96093 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError
96121 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError
96130 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask&(1<<i)) ){
96147 if( tmask&TRIGGER_BEFORE ){
96151 TRIGGER_BEFORE, pTab, regOldRowid, onError, addr);