Lines Matching defs:pn
486 XvdiDestroyVideoNotify(pointer pn, XID id)
490 ((XvVideoNotifyPtr)pn)->client = NULL;
495 XvdiDestroyPortNotify(pointer pn, XID id)
499 ((XvPortNotifyPtr)pn)->client = NULL;
504 XvdiDestroyVideoNotifyList(pointer pn, XID id)
510 cpn = (XvVideoNotifyPtr)pn;
532 XvVideoNotifyPtr pn;
534 dixLookupResourceByType((pointer *)&pn, pDraw->id, XvRTVideoNotifyList,
537 while (pn)
544 WriteEventsToClient(pn->client, 1, (xEventPtr)&event);
545 pn = pn->next;
560 XvPortNotifyPtr pn;
562 pn = pPort->pNotify;
564 while (pn)
571 WriteEventsToClient(pn->client, 1, (xEventPtr)&event);
572 pn = pn->next;
906 XvVideoNotifyPtr pn,tpn,fpn;
911 rc = dixLookupResourceByType((pointer *)&pn, pDraw->id, XvRTVideoNotifyList,
918 if (!onoff && !pn) return Success;
923 if (!pn)
939 tpn = pn;
965 tpn->next = pn->next;
966 pn->next = tpn;
988 XvPortNotifyPtr pn,tpn;
993 pn = pPort->pNotify;
994 while (pn)
996 if (!pn->client) tpn = pn; /* TAKE NOTE OF FREE ENTRY */
997 if (pn->client == client) break;
998 pn = pn->next;
1003 if (pn)
1009 pn->client = NULL;
1010 FreeResource(pn->id, XvRTPortNotify);