Home
last modified time | relevance | path

Searched refs:pProp (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/xserver/dix/
H A Dproperty.c74 PropertyPtr pProp; in PrintPropertys() local
77 pProp = pWin->userProps; in PrintPropertys()
78 while (pProp) { in PrintPropertys()
79 ErrorF("[dix] %x %x\n", pProp->propertyName, pProp->type); in PrintPropertys()
80 ErrorF("[dix] property format: %d\n", pProp->format); in PrintPropertys()
82 for (j = 0; j < (pProp->format / 8) * pProp->size; j++) in PrintPropertys()
83 ErrorF("[dix] %c\n", pProp->data[j]); in PrintPropertys()
84 pProp = pProp->next; in PrintPropertys()
93 PropertyPtr pProp; in dixLookupProperty() local
98 for (pProp = wUserProps(pWin); pProp; pProp = pProp->next) in dixLookupProperty()
[all …]
/OK3568_Linux_fs/external/xserver/Xext/
H A Dxselinux_ext.c251 PropertyPtr pProp; in ProcSELinuxGetPropertyContext() local
262 rc = dixLookupProperty(&pProp, pWin, stuff->property, client, in ProcSELinuxGetPropertyContext()
267 obj = dixLookupPrivate(&pProp->devPrivates, privKey); in ProcSELinuxGetPropertyContext()
405 PropertyPtr pProp; in ProcSELinuxListProperties() local
419 for (pProp = wUserProps(pWin); pProp; pProp = pProp->next) in ProcSELinuxListProperties()
428 for (pProp = wUserProps(pWin); pProp; pProp = pProp->next) { in ProcSELinuxListProperties()
429 id = pProp->propertyName; in ProcSELinuxListProperties()
430 rc = SELinuxPopulateItem(items + i, &pProp->devPrivates, id, &size); in ProcSELinuxListProperties()
H A Dxselinux_hooks.c555 PropertyPtr pProp = *rec->ppProp; in SELinuxProperty() local
556 Atom name = pProp->propertyName; in SELinuxProperty()
566 obj = dixLookupPrivate(&pProp->devPrivates, objectKey); in SELinuxProperty()
583 while (pProp->propertyName != name || obj->sid != tsid) { in SELinuxProperty()
584 if ((pProp = pProp->next) == NULL) in SELinuxProperty()
586 obj = dixLookupPrivate(&pProp->devPrivates, objectKey); in SELinuxProperty()
589 if (pProp) in SELinuxProperty()
590 *rec->ppProp = pProp; in SELinuxProperty()
605 data = dixLookupPrivate(&pProp->devPrivates, dataKey); in SELinuxProperty()