Lines Matching defs:pList
975 DevCursorList pList;
978 pList = pWin->optional->deviceCursors;
979 while (pList) {
980 if (pList->cursor)
981 FreeCursor(pList->cursor, (XID) 0);
982 pPrev = pList;
983 pList = pList->next;
3542 DevCursorList pList;
3547 pList = pWin->optional->deviceCursors;
3549 while (pList) {
3550 if (pList->dev == pDev) {
3551 if (pList->cursor == None) /* inherited from parent */
3554 return pList->cursor;
3556 pList = pList->next;
3571 DevCursorList pList;
3576 pList = pWin->optional->deviceCursors;
3578 if (pList && pList->dev == pDev) {
3579 *pNode = pList;
3584 while (pList) {
3585 if (pList->next) {
3586 if (pList->next->dev == pDev) {
3587 *pNode = pList->next;
3588 *pPrev = pList;
3592 pList = pList->next;