Lines Matching refs:privates

119 dixGetPrivateAddr(PrivatePtr *privates, const DevPrivateKey key)  in dixGetPrivateAddr()  argument
122 return (char *) (*privates) + key->offset; in dixGetPrivateAddr()
133 dixGetPrivate(PrivatePtr *privates, const DevPrivateKey key) in dixGetPrivate() argument
136 return *(void **) dixGetPrivateAddr(privates, key); in dixGetPrivate()
144 dixSetPrivate(PrivatePtr *privates, const DevPrivateKey key, void *val) in dixSetPrivate() argument
147 *(void **) dixGetPrivateAddr(privates, key) = val; in dixSetPrivate()
161 dixLookupPrivate(PrivatePtr *privates, const DevPrivateKey key) in dixLookupPrivate() argument
164 return dixGetPrivateAddr(privates, key); in dixLookupPrivate()
166 return dixGetPrivate(privates, key); in dixLookupPrivate()
176 dixLookupPrivateAddr(PrivatePtr *privates, const DevPrivateKey key) in dixLookupPrivateAddr() argument
179 return (void **) dixGetPrivateAddr(privates, key); in dixLookupPrivateAddr()
191 dixGetScreenPrivateAddr(PrivatePtr *privates, const DevScreenPrivateKey key, in dixGetScreenPrivateAddr() argument
194 return dixGetPrivateAddr(privates, _dixGetScreenPrivateKey(key, pScreen)); in dixGetScreenPrivateAddr()
198 dixGetScreenPrivate(PrivatePtr *privates, const DevScreenPrivateKey key, in dixGetScreenPrivate() argument
201 return dixGetPrivate(privates, _dixGetScreenPrivateKey(key, pScreen)); in dixGetScreenPrivate()
205 dixSetScreenPrivate(PrivatePtr *privates, const DevScreenPrivateKey key, in dixSetScreenPrivate() argument
208 dixSetPrivate(privates, _dixGetScreenPrivateKey(key, pScreen), val); in dixSetScreenPrivate()
212 dixLookupScreenPrivate(PrivatePtr *privates, const DevScreenPrivateKey key, in dixLookupScreenPrivate() argument
215 return dixLookupPrivate(privates, _dixGetScreenPrivateKey(key, pScreen)); in dixLookupScreenPrivate()
219 dixLookupScreenPrivateAddr(PrivatePtr *privates, const DevScreenPrivateKey key, in dixLookupScreenPrivateAddr() argument
222 return dixLookupPrivateAddr(privates, in dixLookupScreenPrivateAddr()
270 _dixInitScreenPrivates(ScreenPtr pScreen, PrivatePtr *privates, void *addr, DevPrivateType type);
284 dixAllocatePrivates(PrivatePtr *privates, DevPrivateType type);
290 dixFreePrivates(PrivatePtr privates, DevPrivateType type);
296 _dixInitPrivates(PrivatePtr *privates, void *addr, DevPrivateType type);
304 _dixFiniPrivates(PrivatePtr privates, DevPrivateType type);
322 _dixFreeObjectWithPrivates(void *object, PrivatePtr privates,