Lines Matching defs:TriggerPrg
15388 typedef struct TriggerPrg TriggerPrg;
19699 ** TriggerPrg.pTrigger, assuming a default ON CONFLICT clause of
19700 ** TriggerPrg.orconf, is stored in the TriggerPrg.pProgram variable.
19704 ** The TriggerPrg.aColmask[0] variable is set to a mask of old.* columns
19706 ** statements). Similarly, the TriggerPrg.aColmask[1] variable is set to
19709 struct TriggerPrg {
19711 TriggerPrg *pNext; /* Next entry in Parse.pTriggerPrg list */
19840 TriggerPrg *pTriggerPrg; /* Linked list of coded triggers */
142633 /* Delete any TriggerPrg structures allocated while parsing this statement. */
142635 TriggerPrg *pT = sParse.pTriggerPrg;
152939 ** Create and populate a new TriggerPrg object with a sub-program
152942 static TriggerPrg *codeRowTrigger(
152950 TriggerPrg *pPrg; /* Value to return */
152961 /* Allocate the TriggerPrg and SubProgram objects. To ensure that they
152964 pPrg = sqlite3DbMallocZero(db, sizeof(TriggerPrg));
153051 ** Return a pointer to a TriggerPrg object containing the sub-program for
153053 ** TriggerPrg object exists, a new object is allocated and populated before
153056 static TriggerPrg *getRowTrigger(
153063 TriggerPrg *pPrg;
153069 ** a matching TriggerPrg.pTrigger field will be present somewhere
153076 /* If an existing TriggerPrg could not be located, create a new one. */
153100 TriggerPrg *pPrg;
153258 TriggerPrg *pPrg;