Searched refs:IOHIDValueRef (Results 1 - 21 of 21) sorted by relevance

/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDValue.h71 @result Returns a reference to a new IOHIDValueRef.
74 IOHIDValueRef IOHIDValueCreateWithIntegerValue(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, CFIndex value)
89 @result Returns a reference to a new IOHIDValueRef.
92 IOHIDValueRef IOHIDValueCreateWithBytes(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, const uint8_t * bytes, CFIndex length)
107 @result Returns a reference to a new IOHIDValueRef.
110 IOHIDValueRef IOHIDValueCreateWithBytesNoCopy(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, const uint8_t * bytes, CFIndex length)
115 @abstract Returns the element value associated with this IOHIDValueRef.
116 @param value The value to be queried. If this parameter is not a valid IOHIDValueRef, the behavior is undefined.
120 IOHIDElementRef IOHIDValueGetElement(IOHIDValueRef value)
125 @abstract Returns the timestamp value contained in this IOHIDValueRef
[all...]
H A DIOHIDLibPrivate.h69 IOHIDValueRef _IOHIDElementGetValue(IOHIDElementRef element);
75 void _IOHIDElementSetValue(IOHIDElementRef element, IOHIDValueRef value);
78 IOHIDValueRef _IOHIDValueCreateWithStruct(CFAllocatorRef allocator, IOHIDElementRef element, IOHIDEventStruct * pEventStruct);
81 IOHIDValueRef _IOHIDValueCreateWithElementValuePtr(CFAllocatorRef allocator, IOHIDElementRef element, IOHIDElementValue * pEventValue);
84 void _IOHIDValueCopyToElementValuePtr(IOHIDValueRef value, IOHIDElementValue * pElementValue);
H A DIOHIDValue.c36 static IOHIDValueRef __IOHIDValueCreatePrivate(CFAllocatorRef allocator, CFAllocatorContext * context __unused, size_t extraBytes);
78 IOHIDValueRef __IOHIDValueCreatePrivate(CFAllocatorRef allocator, CFAllocatorContext * context __unused, size_t dataLength)
80 IOHIDValueRef event = NULL;
86 event = (IOHIDValueRef)_CFRuntimeCreateInstance(allocator, IOHIDValueGetTypeID(), size, NULL);
99 IOHIDValueRef event = ( IOHIDValueRef ) object;
104 IOHIDValueRef _IOHIDValueCreateWithElementValuePtr(CFAllocatorRef allocator, IOHIDElementRef element, IOHIDElementValue * pElementValue)
106 IOHIDValueRef event = NULL;
127 IOHIDValueRef _IOHIDValueCreateWithStruct(CFAllocatorRef allocator, IOHIDElementRef element, IOHIDEventStruct * pEventStruct)
129 IOHIDValueRef even
[all...]
H A DIOHIDBase.h41 /*! @typedef IOHIDValueRef
44 typedef struct __IOHIDValue * IOHIDValueRef; typedef in typeref:struct:__IOHIDValue
106 @param value IOHIDValueRef containing the returned element value.
112 IOHIDValueRef value);
H A DIOHIDQueue.h246 @result Returns valid IOHIDValueRef if data is available.
249 IOHIDValueRef IOHIDQueueCopyNextValue(
264 @result Returns valid IOHIDValueRef if data is available.
267 IOHIDValueRef IOHIDQueueCopyNextValueWithTimeout(
H A DIOHIDDevice.h339 @param value IOHIDValueRef containing value to be set.
346 IOHIDValueRef value)
356 value is IOHIDValueRef.
376 @param value IOHIDValueRef containing value to be set.
387 IOHIDValueRef value,
401 value is IOHIDValueRef.
426 @param pValue Pointer to IOHIDValueRef to be obtained.
433 IOHIDValueRef * pValue)
465 @param pValue Pointer to IOHIDValueRef to be passedback.
476 IOHIDValueRef * pValu
[all...]
H A DIOHIDTransaction.h215 IOHIDValueRef value,
233 @result Returns IOHIDValueRef for the given element.
236 IOHIDValueRef IOHIDTransactionGetValue(
H A DIOHIDDevicePlugIn.h262 @param value IOHIDValueRef containing element value to be set.
270 IOReturn (*setValue)(void * self, IOHIDElementRef element, IOHIDValueRef value,
283 @param pValue Pointer to a IOHIDValueRef to return the element value.
291 IOReturn (*getValue)(void * self, IOHIDElementRef element, IOHIDValueRef * pValue,
454 @param pValue Pointer to a IOHIDValueRef to return the value at the head of the queue.
459 IOReturn (*copyNextValue)(void * self, IOHIDValueRef * pValue, uint32_t timeout, IOOptionBits options);
536 @param value IOHIDValueRef referencing element value to be used in the transaction.
540 IOReturn (*setValue)(void * self, IOHIDElementRef element, IOHIDValueRef value, IOOptionBits options);
547 @param pValue Pointer to an IOHIDValueRef to return the element value of the transaction.
551 IOReturn (*getValue)(void * self, IOHIDElementRef element, IOHIDValueRef *pValu
[all...]
H A DIOHIDTransaction.c347 IOHIDValueRef value,
360 IOHIDValueRef IOHIDTransactionGetValue(
365 IOHIDValueRef value = NULL;
H A DIOHIDDevice.c69 IOHIDValueRef value);
894 IOHIDValueRef value;
936 IOHIDValueRef value)
964 IOHIDValueRef value,
1008 IOHIDValueRef * values = NULL;
1032 values = (IOHIDValueRef *)malloc(count * sizeof(IOHIDValueRef));
1088 IOHIDValueRef * pValue)
1122 IOHIDValueRef * pValue,
1167 IOHIDValueRef valu
[all...]
H A DIOHIDQueue.c396 IOHIDValueRef IOHIDQueueCopyNextValue(
405 IOHIDValueRef IOHIDQueueCopyNextValueWithTimeout(
409 IOHIDValueRef value = NULL;
H A DIOHIDElement.c61 IOHIDValueRef value;
710 IOHIDValueRef _IOHIDElementGetValue(IOHIDElementRef element)
718 void _IOHIDElementSetValue(IOHIDElementRef element, IOHIDValueRef value)
723 element->value = value ? (IOHIDValueRef)CFRetain(value) : NULL;
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDTransactionElement.h60 void IOHIDTransactionElementSetDefaultValue(IOHIDTransactionElementRef element, IOHIDValueRef value);
63 IOHIDValueRef IOHIDTransactionElementGetDefaultValue(IOHIDTransactionElementRef element);
66 void IOHIDTransactionElementSetValue(IOHIDTransactionElementRef element, IOHIDValueRef value);
69 IOHIDValueRef IOHIDTransactionElementGetValue(IOHIDTransactionElementRef element);
H A DIOHIDTransactionElement.c36 IOHIDValueRef value;
37 IOHIDValueRef defaultValue;
112 void IOHIDTransactionElementSetDefaultValue(IOHIDTransactionElementRef element, IOHIDValueRef value)
116 element->defaultValue = value ? (IOHIDValueRef)CFRetain(value) : NULL;
119 IOHIDValueRef IOHIDTransactionElementGetDefaultValue(IOHIDTransactionElementRef element)
124 void IOHIDTransactionElementSetValue(IOHIDTransactionElementRef element, IOHIDValueRef value)
128 element->value = value ? (IOHIDValueRef)CFRetain(value) : NULL;
131 IOHIDValueRef IOHIDTransactionElementGetValue(IOHIDTransactionElementRef element)
H A DIOHIDTransactionClass.h68 static IOReturn _setElementValue(void * self, IOHIDElementRef element, IOHIDValueRef event, IOOptionBits options);
69 static IOReturn _getElementValue(void * self, IOHIDElementRef element, IOHIDValueRef * pEvent, IOOptionBits options);
93 virtual IOReturn setElementValue(IOHIDElementRef element, IOHIDValueRef event, IOOptionBits options=0);
94 virtual IOReturn getElementValue(IOHIDElementRef element, IOHIDValueRef * pEvent, IOOptionBits options=0);
152 IOHIDValueRef event,
158 IOHIDValueRef * pEvent,
H A DIOHIDDeviceClass.h143 IOReturn getCurrentElementValueAndGeneration(IOHIDElementRef element, IOHIDValueRef *pEvent = 0, uint32_t * pGeneration = 0);
181 static IOReturn _getElementValue(void * self, IOHIDElementRef element, IOHIDValueRef * pEvent,
183 static IOReturn _setElementValue(void * self, IOHIDElementRef element, IOHIDValueRef event,
232 IOHIDValueRef * pEvent,
239 IOHIDValueRef event,
297 static void _elementValueCallback(void * context, IOReturn result, void * sender, IOHIDValueRef value);
314 IOHIDValueRef event,
322 IOHIDValueRef * pEvent,
H A DIOHIDTransactionClass.cpp304 IOReturn IOHIDTransactionClass::setElementValue(IOHIDElementRef element, IOHIDValueRef event, IOOptionBits options)
330 IOReturn IOHIDTransactionClass::getElementValue(IOHIDElementRef element, IOHIDValueRef * pEvent, IOOptionBits options)
361 IOHIDValueRef event;
501 IOReturn IOHIDTransactionClass::_setElementValue(void * self, IOHIDElementRef element, IOHIDValueRef event, IOOptionBits options)
504 IOReturn IOHIDTransactionClass::_getElementValue(void * self, IOHIDElementRef element, IOHIDValueRef * pEvent, IOOptionBits options)
686 IOHIDValueRef event;
705 IOHIDValueRef event,
717 IOHIDValueRef event;
751 IOHIDValueRef * pEvent, IOOptionBits options)
H A DIOHIDQueueClass.h74 static IOReturn _copyNextEventValue (void * self, IOHIDValueRef * pEvent, uint32_t timeout, IOOptionBits options);
97 virtual IOReturn copyNextEventValue (IOHIDValueRef * pEvent, uint32_t timeout, IOOptionBits options = 0);
H A DIOHIDDeviceClass.cpp739 IOReturn IOHIDDeviceClass::getElementValue(IOHIDElementRef element, IOHIDValueRef * pEvent, uint32_t timeout __unused, IOHIDValueCallback callback __unused, void * refcon __unused, IOOptionBits options)
763 IOReturn IOHIDDeviceClass::setElementValue(IOHIDElementRef element, IOHIDValueRef event, uint32_t timeout __unused, IOHIDValueCallback callback __unused, void * refcon __unused, IOOptionBits options)
797 IOReturn IOHIDDeviceClass::getCurrentElementValueAndGeneration(IOHIDElementRef element, IOHIDValueRef *pEvent, uint32_t * pGeneration)
801 IOHIDValueRef valueRef;
1521 IOHIDValueRef event;
1701 IOReturn IOHIDDeviceClass::_getElementValue(void * self, IOHIDElementRef element, IOHIDValueRef * pEvent,
1705 IOReturn IOHIDDeviceClass::_setElementValue(void * self, IOHIDElementRef element, IOHIDValueRef event,
2134 IOHIDValueRef event,
2146 IOHIDValueRef event = _IOHIDValueCreateWithStruct(kCFAllocatorDefault, element, pEvent);
2180 IOHIDValueRef even
[all...]
H A DIOHIDQueueClass.cpp518 IOReturn IOHIDQueueClass::copyNextEventValue (IOHIDValueRef *pEvent,
625 IOReturn IOHIDQueueClass::_copyNextEventValue (void * self, IOHIDValueRef * pEvent, uint32_t timeout, IOOptionBits options)
791 IOHIDValueRef event = NULL;
/macosx-10.9.5/IOHIDFamily-503.215.2/tools/
H A DIOHIDReportTest.c40 void __deviceValueCallback (void * context, IOReturn result, void * sender, IOHIDValueRef value)

Completed in 251 milliseconds