Lines Matching refs:TRIGGER_BEFORE
10422 u8 tr_tm; /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
10439 #define TRIGGER_BEFORE 1
79505 pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf
79522 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel
83237 if( tmask & TRIGGER_BEFORE ){
83298 sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
92705 pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER;
93098 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
93311 (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"),
93483 int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
93492 assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER );
93534 ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE
93536 ** included in the returned mask if the TRIGGER_BEFORE bit is set in the
93545 int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
93691 int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
93967 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError
93995 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError
94004 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask&(1<<i)) ){
94021 if( tmask&TRIGGER_BEFORE ){
94025 TRIGGER_BEFORE, pTab, regOldRowid, onError, addr);