Home | History | Annotate | Download | only in dist

Lines Matching refs:TriggerPrg

7399 typedef struct TriggerPrg TriggerPrg;
10253 ** TriggerPrg.pTrigger, assuming a default ON CONFLICT clause of
10254 ** TriggerPrg.orconf, is stored in the TriggerPrg.pProgram variable.
10258 ** The TriggerPrg.aColmask[0] variable is set to a mask of old.* columns
10260 ** statements). Similarly, the TriggerPrg.aColmask[1] variable is set to
10263 struct TriggerPrg {
10268 TriggerPrg *pNext; /* Next entry in Parse.pTriggerPrg list */
10370 TriggerPrg *pTriggerPrg; /* Linked list of coded triggers */
87654 /* Delete any TriggerPrg structures allocated while parsing this statement. */
87656 TriggerPrg *pT = pParse->pTriggerPrg;
93257 ** Create and populate a new TriggerPrg object with a sub-program
93260 static TriggerPrg *codeRowTrigger(
93268 TriggerPrg *pPrg; /* Value to return */
93279 /* Allocate the TriggerPrg and SubProgram objects. To ensure that they
93282 pPrg = sqlite3DbMallocZero(db, sizeof(TriggerPrg));
93367 ** Return a pointer to a TriggerPrg object containing the sub-program for
93369 ** TriggerPrg object exists, a new object is allocated and populated before
93372 static TriggerPrg *getRowTrigger(
93379 TriggerPrg *pPrg;
93385 ** a matching TriggerPrg.pTrigger field will be present somewhere
93392 /* If an existing TriggerPrg could not be located, create a new one. */
93415 TriggerPrg *pPrg;
93558 TriggerPrg *pPrg;