Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/xserver/dix/
H A Dselection.c74 Selection *pSel; in dixLookupSelection() local
79 for (pSel = CurrentSelections; pSel; pSel = pSel->next) in dixLookupSelection()
80 if (pSel->selection == selectionName) in dixLookupSelection()
83 if (pSel) in dixLookupSelection()
84 rc = XaceHookSelectionAccess(client, &pSel, access_mode); in dixLookupSelection()
85 *result = pSel; in dixLookupSelection()
92 Selection *pSel, *pNextSel; in InitSelections() local
94 pSel = CurrentSelections; in InitSelections()
95 while (pSel) { in InitSelections()
96 pNextSel = pSel->next; in InitSelections()
[all …]
/OK3568_Linux_fs/external/xserver/Xext/
H A Dxselinux_ext.c274 Selection *pSel; in ProcSELinuxGetSelectionContext() local
281 rc = dixLookupSelection(&pSel, stuff->id, client, DixGetAttrAccess); in ProcSELinuxGetSelectionContext()
285 obj = dixLookupPrivate(&pSel->devPrivates, privKey); in ProcSELinuxGetSelectionContext()
444 Selection *pSel; in ProcSELinuxListSelections() local
453 for (pSel = CurrentSelections; pSel; pSel = pSel->next) in ProcSELinuxListSelections()
462 for (pSel = CurrentSelections; pSel; pSel = pSel->next) { in ProcSELinuxListSelections()
463 id = pSel->selection; in ProcSELinuxListSelections()
464 rc = SELinuxPopulateItem(items + i, &pSel->devPrivates, id, &size); in ProcSELinuxListSelections()
H A Dxselinux_hooks.c495 Selection *pSel = *rec->ppSel; in SELinuxSelection() local
496 Atom name = pSel->selection; in SELinuxSelection()
503 obj = dixLookupPrivate(&pSel->devPrivates, objectKey); in SELinuxSelection()
519 while (pSel->selection != name || obj->sid != tsid) { in SELinuxSelection()
520 if ((pSel = pSel->next) == NULL) in SELinuxSelection()
522 obj = dixLookupPrivate(&pSel->devPrivates, objectKey); in SELinuxSelection()
525 if (pSel) in SELinuxSelection()
526 *rec->ppSel = pSel; in SELinuxSelection()
541 data = dixLookupPrivate(&pSel->devPrivates, dataKey); in SELinuxSelection()