Lines Matching refs:pList
988 DevCursorList pList; in DisposeWindowOptional() local
991 pList = pWin->optional->deviceCursors; in DisposeWindowOptional()
992 while (pList) { in DisposeWindowOptional()
993 if (pList->cursor) in DisposeWindowOptional()
994 FreeCursor(pList->cursor, (XID) 0); in DisposeWindowOptional()
995 pPrev = pList; in DisposeWindowOptional()
996 pList = pList->next; in DisposeWindowOptional()
3560 DevCursorList pList; in WindowGetDeviceCursor() local
3565 pList = pWin->optional->deviceCursors; in WindowGetDeviceCursor()
3567 while (pList) { in WindowGetDeviceCursor()
3568 if (pList->dev == pDev) { in WindowGetDeviceCursor()
3569 if (pList->cursor == None) /* inherited from parent */ in WindowGetDeviceCursor()
3572 return pList->cursor; in WindowGetDeviceCursor()
3574 pList = pList->next; in WindowGetDeviceCursor()
3589 DevCursorList pList; in WindowSeekDeviceCursor() local
3594 pList = pWin->optional->deviceCursors; in WindowSeekDeviceCursor()
3596 if (pList && pList->dev == pDev) { in WindowSeekDeviceCursor()
3597 *pNode = pList; in WindowSeekDeviceCursor()
3602 while (pList) { in WindowSeekDeviceCursor()
3603 if (pList->next) { in WindowSeekDeviceCursor()
3604 if (pList->next->dev == pDev) { in WindowSeekDeviceCursor()
3605 *pNode = pList->next; in WindowSeekDeviceCursor()
3606 *pPrev = pList; in WindowSeekDeviceCursor()
3610 pList = pList->next; in WindowSeekDeviceCursor()