Lines Matching refs:pAtt
133 SWriteAttributeInfo(ClientPtr client, xvAttributeInfo * pAtt) in SWriteAttributeInfo() argument
135 swapl(&pAtt->flags); in SWriteAttributeInfo()
136 swapl(&pAtt->size); in SWriteAttributeInfo()
137 swapl(&pAtt->min); in SWriteAttributeInfo()
138 swapl(&pAtt->max); in SWriteAttributeInfo()
139 WriteToClient(client, sz_xvAttributeInfo, pAtt); in SWriteAttributeInfo()
772 XvAttributePtr pAtt; in ProcXvQueryPortAttributes() local
788 for (i = 0, pAtt = pPort->pAdaptor->pAttributes; in ProcXvQueryPortAttributes()
789 i < pPort->pAdaptor->nAttributes; i++, pAtt++) { in ProcXvQueryPortAttributes()
790 rep.text_size += pad_to_int32(strlen(pAtt->name) + 1); in ProcXvQueryPortAttributes()
799 for (i = 0, pAtt = pPort->pAdaptor->pAttributes; in ProcXvQueryPortAttributes()
800 i < pPort->pAdaptor->nAttributes; i++, pAtt++) { in ProcXvQueryPortAttributes()
801 size = strlen(pAtt->name) + 1; /* pass the NULL */ in ProcXvQueryPortAttributes()
802 Info.flags = pAtt->flags; in ProcXvQueryPortAttributes()
803 Info.min = pAtt->min_value; in ProcXvQueryPortAttributes()
804 Info.max = pAtt->max_value; in ProcXvQueryPortAttributes()
809 WriteToClient(client, size, pAtt->name); in ProcXvQueryPortAttributes()