Lines Matching defs:pList
802 DevCursorList pList;
804 pList = pWin->optional->deviceCursors;
805 while(pList)
807 if (pList->cursor)
808 FreeCursor(pList->cursor, (XID)0);
809 pPrev = pList;
810 pList = pList->next;
3596 DevCursorList pList;
3601 pList = pWin->optional->deviceCursors;
3603 while(pList)
3605 if (pList->dev == pDev)
3607 if (pList->cursor == None) /* inherited from parent */
3610 return pList->cursor;
3612 pList = pList->next;
3628 DevCursorList pList;
3633 pList = pWin->optional->deviceCursors;
3635 if (pList && pList->dev == pDev)
3637 *pNode = pList;
3642 while(pList)
3644 if (pList->next)
3646 if (pList->next->dev == pDev)
3648 *pNode = pList->next;
3649 *pPrev = pList;
3653 pList = pList->next;