Home | History | Annotate | Download | only in dist

Lines Matching refs:TRIGGER_BEFORE

9754   u8 tr_tm;               /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
9771 #define TRIGGER_BEFORE 1
71129 pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf
71148 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel
74794 if( tmask & TRIGGER_BEFORE ){
74855 sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE,
83943 pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER;
84335 int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
84546 (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"),
84717 int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */
84726 assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER );
84768 ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE
84770 ** included in the returned mask if the TRIGGER_BEFORE bit is set in the
84779 int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
84925 int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */
85200 pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError
85229 pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError
85238 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask&(1<<i)) ){
85255 if( tmask&TRIGGER_BEFORE ){
85259 TRIGGER_BEFORE, pTab, regOldRowid, onError, addr);