Searched defs:hidManagerRef (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DDarwinKeyboard.cpp336 IOHIDManagerRef hidManagerRef; /** IOKit HID manager reference */ member in struct:VBoxHidsState_t
2169 pHidState->hidManagerRef = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDOptionsTypeNone);
2170 if (pHidState->hidManagerRef)
2175 IOHIDManagerScheduleWithRunLoop(pHidState->hidManagerRef, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
2176 IOHIDManagerSetDeviceMatching(pHidState->hidManagerRef, deviceMatchingDictRef);
2178 rc = IOHIDManagerOpen(pHidState->hidManagerRef, kIOHIDOptionsTypeNone);
2187 CFSetRef pDevicesSet = IOHIDManagerCopyDevices(pHidState->hidManagerRef);
2205 IOHIDManagerRegisterDeviceMatchingCallback(pHidState->hidManagerRef, darwinHidMatchingCallback, (void *)pHidState);
2221 rc = IOHIDManagerClose(pHidState->hidManagerRef, 0);
2229 CFRelease(pHidState->hidManagerRef);
[all...]

Completed in 67 milliseconds