Lines Matching refs:pHead
78 RREventPtr pRREvent, *pHead; in ProcRRSelectInput() local
86 rc = dixLookupResourceByType((void **) &pHead, pWin->drawable.id, in ProcRRSelectInput()
103 if (pHead) { in ProcRRSelectInput()
105 for (pRREvent = *pHead; pRREvent; pRREvent = pRREvent->next) in ProcRRSelectInput()
133 if (!pHead) { in ProcRRSelectInput()
134 pHead = (RREventPtr *) malloc(sizeof(RREventPtr)); in ProcRRSelectInput()
135 if (!pHead || in ProcRRSelectInput()
137 (void *) pHead)) { in ProcRRSelectInput()
141 *pHead = 0; in ProcRRSelectInput()
143 pRREvent->next = *pHead; in ProcRRSelectInput()
144 *pHead = pRREvent; in ProcRRSelectInput()
185 if (pHead) { in ProcRRSelectInput()
188 for (pRREvent = *pHead; pRREvent; pRREvent = pRREvent->next) { in ProcRRSelectInput()
198 *pHead = pRREvent->next; in ProcRRSelectInput()