Searched refs:elementCookie (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDLib/
H A DIOHIDLibObsolete.h44 IOHIDElementCookie elementCookie; member in struct:IOHIDEventStruct
121 @param elementCookie Element within interface instance sending completion.
123 typedef void (*IOHIDElementCallbackFunction) (void * target, IOReturn result, void * refcon, void * sender, IOHIDElementCookie elementCookie);
155 IOReturn (*getElementValue)(void * self, IOHIDElementCookie elementCookie, \
157 IOReturn (*setElementValue)(void * self, IOHIDElementCookie elementCookie, \
161 IOReturn (*queryElementValue)(void * self, IOHIDElementCookie elementCookie, \
227 IOReturn (*addElement)(void * self, IOHIDElementCookie elementCookie, uint32_t flags);\
228 IOReturn (*removeElement)(void * self, IOHIDElementCookie elementCookie); \
229 Boolean (*hasElement)(void * self, IOHIDElementCookie elementCookie); \
255 IOReturn (*addElement)(void * self, IOHIDElementCookie elementCookie); \
[all...]
H A DIOHIDDeviceClass.h203 bool getElementStructPtr(IOHIDElementCookie elementCookie, IOHIDElementStruct ** ppElementStruct, uint32_t * pIndex=0, CFDataRef * pData =0);
204 bool getElementStruct(IOHIDElementCookie elementCookie, IOHIDElementStruct * pElementStruct);
205 uint32_t getElementByteSize (IOHIDElementCookie elementCookie);
206 IOHIDElementRef getElement(IOHIDElementCookie elementCookie);
288 static IOReturn _getElementValue(void * self, IOHIDElementCookie elementCookie, IOHIDEventStruct * valueEvent);
H A DIOHIDDeviceClass.cpp1824 uint32_t IOHIDDeviceClass::getElementByteSize(IOHIDElementCookie elementCookie) argument
1829 if (getElementStruct(elementCookie, &element))
1835 bool IOHIDDeviceClass::getElementStructPtr(IOHIDElementCookie elementCookie, IOHIDElementStruct ** ppElementStruct, uint32_t * pIndex, CFDataRef * pData) argument
1841 if ( ((uint32_t) elementCookie >= fElements[index].cookieMin) && ((uint32_t) elementCookie <= fElements[index].cookieMax) )
1844 while ( (fElements[index].cookieMin != fElements[index].cookieMax) && ((fElements[index].cookieMin + cookieIndex) != (uint32_t)elementCookie) )
1861 if ( ((uint32_t) elementCookie >= fReportHandlerElements[index].cookieMin) && ((uint32_t) elementCookie <= fReportHandlerElements[index].cookieMax) )
1877 bool IOHIDDeviceClass::getElementStruct(IOHIDElementCookie elementCookie, IOHIDElementStruct * elementStruct) argument
1881 if (getElementStructPtr(elementCookie,
1998 _getElementValue(void * self, IOHIDElementCookie elementCookie, IOHIDEventStruct * valueEvent) argument
[all...]
H A DIOHIDQueueClass.cpp684 IOReturn IOHIDObsoleteQueueClass::_removeElement (void * self, IOHIDElementCookie elementCookie) argument
685 { return getThis(self)->removeElement(elementCookie); }
687 Boolean IOHIDObsoleteQueueClass::_hasElement (void * self, IOHIDElementCookie elementCookie) argument
688 { return getThis(self)->hasElement(elementCookie); }
803 pEventStruct->elementCookie = IOHIDElementGetCookie(IOHIDValueGetElement(event));
H A DIOHIDTransactionClass.cpp732 pEvent->elementCookie = cookie;
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDLibUserClient.h263 IOReturn addElementToQueue(IOHIDEventQueue * queue, IOHIDElementCookie elementCookie, uint32_t flags, uint64_t *pSizeChange);
267 IOReturn removeElementFromQueue (IOHIDEventQueue * queue, IOHIDElementCookie elementCookie, uint64_t *pSizeChange);
271 IOReturn queueHasElement (IOHIDEventQueue * queue, IOHIDElementCookie elementCookie, uint64_t * pHasElement);
H A DIOHIDLibUserClient.cpp1044 IOReturn IOHIDLibUserClient::addElementToQueue(IOHIDEventQueue * queue, IOHIDElementCookie elementCookie, uint32_t flags __unused, uint64_t *pSizeChange) argument
1053 ret = fNub->startEventDelivery (queue, elementCookie);
1065 IOReturn IOHIDLibUserClient::removeElementFromQueue (IOHIDEventQueue * queue, IOHIDElementCookie elementCookie, uint64_t *pSizeChange) argument
1074 ret = fNub->stopEventDelivery (queue, elementCookie);
1086 IOReturn IOHIDLibUserClient::queueHasElement (IOHIDEventQueue * queue, IOHIDElementCookie elementCookie, uint64_t * pHasElement) argument
1094 ret = fNub->checkEventDelivery (queue, elementCookie, &hasElement);

Completed in 194 milliseconds