• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/

Lines Matching refs:devices

76     CFMutableSetRef                 devices;
195 if ( manager->devices ) {
196 CFRelease(manager->devices);
197 manager->devices = NULL;
255 // matched by I/O Kit. Note that this will not catch any devices that were
309 if ( !manager->devices ) {
310 manager->devices = CFSetCreateMutable(
324 if ( manager->devices ) {
325 CFSetAddValue(manager->devices, device);
420 if (CFSetContainsValue(manager->devices, sender))
424 CFSetRemoveValue(manager->devices, sender);
440 if ( manager->matchCallback && manager->devices ) {
446 CFSetApplyFunction( manager->devices,
605 if ( manager->devices ) {
621 CFSetApplyFunction( manager->devices,
649 if ( manager->devices ) {
656 CFSetApplyFunction( manager->devices,
708 if (manager->devices)
709 CFSetApplyFunction(manager->devices, __IOHIDApplyPropertyToDeviceSet, &context);
745 if ( manager->devices ) {
750 CFSetRemoveAllValues(manager->devices);
778 return manager->devices ?
779 CFSetCreateCopy(CFGetAllocator(manager), manager->devices) : NULL;
818 if ( manager->isOpen && manager->devices ) {
824 CFSetApplyFunction( manager->devices,
841 if ( manager->isOpen && manager->devices ) {
847 CFSetApplyFunction( manager->devices,
886 if ( manager->isOpen && manager->devices ) {
892 CFSetApplyFunction( manager->devices,
927 // Schedule the devices
928 if ( manager->devices ) {
934 CFSetApplyFunction( manager->devices,
956 if ( manager->devices ) {
957 // Unschedule the devices
963 CFSetApplyFunction( manager->devices,
1020 if (manager->devices)
1021 CFSetApplyFunction(manager->devices, __IOHIDSaveDeviceSet, context);
1036 // We do not load device properties here, since the devices are not present when this is called.