Searched refs:matchingDict (Results 1 - 16 of 16) sorted by relevance

/macosx-10.9.5/bless-98/libbless/Network/
H A DBLGetPreferredNetworkInterface.c66 CFMutableDictionaryRef matchingDict = NULL, propDict = NULL; local
71 matchingDict = IOServiceMatching(kIONetworkInterfaceClass);
78 CFDictionaryAddValue(matchingDict, CFSTR(kIOPropertyMatchKey), propDict);
81 kret = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict,
93 matchingDict = IOServiceMatching(kIONetworkInterfaceClass);
99 CFDictionaryAddValue(matchingDict, CFSTR(kIOPropertyMatchKey), propDict);
102 kret = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict,
115 matchingDict = IOServiceMatching(kIONetworkInterfaceClass);
120 CFDictionaryAddValue(matchingDict, CFSTR(kIOPropertyMatchKey), propDict);
123 kret = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict,
[all...]
H A DBLIsValidNetworkInterface.c57 CFMutableDictionaryRef matchingDict = NULL, propDict = NULL; local
68 matchingDict = IOServiceMatching(kIONetworkInterfaceClass);
74 CFDictionaryAddValue(matchingDict, CFSTR(kIOPropertyMatchKey), propDict);
78 interface = IOServiceGetMatchingService(kIOMasterPortDefault, matchingDict);
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSITargetProberAppDelegate.m192 CFMutableDictionaryRef matchingDict = NULL;
205 matchingDict = IOServiceMatching ( kIOSCSIParallelInterfaceControllerClassString );
206 require ( ( matchingDict != NULL ), ReleaseSource );
210 CFRetain ( matchingDict );
215 matchingDict,
227 matchingDict,
239 matchingDict = IOServiceMatching ( kIOSCSITargetDeviceClassString );
240 require ( ( matchingDict != NULL ), ReleaseSource );
244 CFRetain ( matchingDict );
249 matchingDict,
[all...]
/macosx-10.9.5/webdavfs-352.92.2/mount.tproj/
H A DEncodedSourceID.c223 CFMutableDictionaryRef matchingDict; local
236 matchingDict = IOServiceMatching(kIOEthernetInterfaceClass);
237 if (matchingDict) {
271 // on propertyMatchDict after adding it to matchingDict.
272 CFDictionarySetValue(matchingDict, CFSTR(kIOPropertyMatchKey), propertyMatchDict);
280 kernResult = IOServiceGetMatchingServices(masterPort, matchingDict, matchingServices);
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDElement.c546 CFMutableDictionaryRef matchingDict; local
549 matchingDict = CFDictionaryCreateMutable(
555 if ( matchingDict ) {
562 CFDictionarySetValue( matchingDict,
569 matchingDict,
579 CFRelease(matchingDict);
594 CFMutableDictionaryRef matchingDict; local
596 matchingDict = CFDictionaryCreateMutable(
602 if ( matchingDict ) {
609 CFDictionarySetValue( matchingDict,
[all...]
H A DIOHIDManager.c233 CFMutableDictionaryRef matchingDict = NULL; local
247 matchingDict = IOServiceMatching(kIOHIDDeviceKey);
249 if ( !matchingDict )
252 __IOHIDManagerMergeDictionaries(matching, matchingDict);
259 matchingDict,
H A DIOHIDDevicePlugIn.h246 @param matchingDict CFDictionaryRef containing the element properties to match on.
251 IOReturn (*copyMatchingElements)(void * self, CFDictionaryRef matchingDict, CFArrayRef * pElements, IOOptionBits options);
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDDeviceClass.cpp1141 IOHIDDeviceClass::copyMatchingElements(CFDictionaryRef matchingDict, CFArrayRef * elements, CFTypeRef parentElement, CFMutableDictionaryRef elementCache, IOOptionBits options) argument
1181 if ( matchingDict )
1183 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementCookieKey), &number) )
1195 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementCookieMinKey), &number) )
1204 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementCookieMaxKey), &number) )
1214 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementCollectionCookieKey), &number) &&
1218 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementTypeKey), &number) &&
1222 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementCollectionTypeKey), &number) &&
1226 if ( getElementDictIntValue(matchingDict, CFSTR(kIOHIDElementReportIDKey), &number) &&
1230 if ( getElementDictIntValue(matchingDict, CFST
1681 _copyMatchingElements(void * self, CFDictionaryRef matchingDict, CFArrayRef * elements, IOOptionBits options) argument
2016 _copyMatchingElements(void * self, CFDictionaryRef matchingDict, CFArrayRef *elements) argument
[all...]
H A DIOHIDDeviceClass.h174 static IOReturn _copyMatchingElements(void * self, CFDictionaryRef matchingDict, CFArrayRef * pElements, IOOptionBits options);
228 virtual IOReturn copyMatchingElements(CFDictionaryRef matchingDict, CFArrayRef * elements, CFTypeRef parentElement=0, CFMutableDictionaryRef elementCache=0, IOOptionBits options=0);
293 static IOReturn _copyMatchingElements(void * self, CFDictionaryRef matchingDict, CFArrayRef * elements);
H A DIOHIDLibObsolete.h188 IOReturn (*copyMatchingElements)(void * self, CFDictionaryRef matchingDict, \
509 @param matchingDict Dictionary containg key/value pairs to match on. Pass
516 CFDictionaryRef matchingDict,
/macosx-10.9.5/PowerManagement-420.90.1/ioupsd/
H A Dupsd.c202 CFMutableDictionaryRef matchingDict; local
216 matchingDict = IOServiceMatching(kIOServiceClass);
218 if (!matchingDict)
226 CFRelease(matchingDict);
233 CFDictionarySetValue(matchingDict, CFSTR(kIOPropertyMatchKey), propertyDict);
243 matchingDict, // matching
/macosx-10.9.5/PowerManagement-420.90.1/pmconfigd/
H A Dpmconfigd.c1227 CFMutableDictionaryRef matchingDict = 0; local
1269 matchingDict = IOServiceMatching(kIOServiceClass);
1270 if (!matchingDict) goto finish;
1278 CFDictionarySetValue(matchingDict, CFSTR(kIOPropertyMatchKey), propertyDict);
1286 matchingDict,
1291 matchingDict = 0; // reference consumed by AddMatchingNotification
1299 if(matchingDict) CFRelease(matchingDict);
/macosx-10.9.5/kext_tools-326.95.1/
H A Dkextd_watchvol.c2039 CFMutableDictionaryRef matchingDict = NULL; local
2063 matchingDict = CFDictionaryCreateMutable(kCFAllocatorDefault,
2067 if (!matchingDict) {
2070 CFDictionarySetValue(matchingDict, CFSTR(kIOPropertyMatchKey),
2075 matchingDict);
2076 matchingDict = NULL; // IOServiceGetMatchingService() consumes reference!
2119 if (matchingDict) CFRelease(matchingDict);
/macosx-10.9.5/SmartcardCCID-55005/libusb/libusb/
H A Ddarwin.c238 CFMutableDictionaryRef matchingDict; local
242 if ((matchingDict = IOServiceMatching(kIOUSBDeviceClassName)) == NULL) {
248 result = IOServiceGetMatchingServices(masterPort, matchingDict, deviceIterator);
249 matchingDict = NULL;
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DLinkConfiguration.c920 CFMutableDictionaryRef matchingDict; local
931 matchingDict = IOBSDNameMatching(masterPort, 0, ifr_name);
932 if (matchingDict) {
933 /* Note: IOServiceGetMatchingServices consumes a reference on the 'matchingDict' */
934 kr = IOServiceGetMatchingServices(masterPort, matchingDict, &io_iter);
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dsys-MacOSX.c2321 CFMutableDictionaryRef matchingDict; local
2327 matchingDict = IOServiceMatching(kIOEthernetInterfaceClass);
2328 if (matchingDict) {
2362 // on propertyMatchDict after adding it to matchingDict.
2363 CFDictionarySetValue(matchingDict, CFSTR(kIOPropertyMatchKey), propertyMatchDict);
2371 kernResult = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, matchingServices);

Completed in 370 milliseconds