Searched refs:matching (Results 1 - 25 of 265) sorted by relevance

1234567891011

/macosx-10.9.5/libarchive-29/libarchive/libarchive_fe/
H A Dmatching.h34 int lafe_exclude(struct lafe_matching **matching, const char *pattern);
35 int lafe_exclude_from_file(struct lafe_matching **matching,
37 int lafe_include(struct lafe_matching **matching, const char *pattern);
38 int lafe_include_from_file(struct lafe_matching **matching,
H A Dmatching.c27 __FBSDID("$FreeBSD: src/usr.bin/cpio/matching.c,v 1.2 2008/06/21 02:20:20 kientzle Exp $");
41 #include "matching.h"
64 * The matching logic here needs to be re-thought. I started out to
65 * try to mimic gtar's matching logic, but it's not entirely
75 lafe_exclude(struct lafe_matching **matching, const char *pattern) argument
78 if (*matching == NULL)
79 initialize_matching(matching);
80 add_pattern(&((*matching)->exclusions), pattern);
81 (*matching)->exclusions_count++;
86 lafe_exclude_from_file(struct lafe_matching **matching, cons argument
102 lafe_include(struct lafe_matching **matching, const char *pattern) argument
114 lafe_include_from_file(struct lafe_matching **matching, const char *pathname, int nullSeparator) argument
151 lafe_excluded(struct lafe_matching *matching, const char *pathname) argument
230 lafe_cleanup_exclusions(struct lafe_matching **matching) argument
254 initialize_matching(struct lafe_matching **matching) argument
262 lafe_unmatched_inclusions(struct lafe_matching *matching) argument
271 lafe_unmatched_inclusions_warn(struct lafe_matching *matching, const char *msg) argument
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dformat.c102 (bfd *abfd, bfd_format format, char ***matching);
107 case, if @var{matching} is not NULL, it will be filled in with
112 When done with the list that @var{matching} points to, the caller
117 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) argument
142 if (matching)
146 *matching = NULL;
164 if (matching)
175 if (matching)
206 if (matching)
229 if (matching)
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDFamilyPrivate.h84 bool CompareProperty(IOService * owner, OSDictionary * matching, const char * key, SInt32 * score, SInt32 increment = 0);
85 bool CompareDeviceUsage( IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment = 0);
86 bool CompareDeviceUsagePairs(IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment = 0);
87 bool CompareProductID( IOService * owner, OSDictionary * matching, SInt32 * score);
89 bool CompareNumberPropertyMask( IOService *owner, OSDictionary *matching, const char *key, const char *maskKey, SInt32 *score, SInt32 increment);
90 bool CompareNumberPropertyArray( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, SInt32 * score, SInt32 increment);
91 bool CompareNumberPropertyArrayWithMask( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, const char * maskKey, SInt32 * score, SInt32 increment);
H A DIOHIDFamilyPrivate.cpp44 bool CompareProperty( IOService * owner, OSDictionary * matching, const char * key, SInt32 * score, SInt32 increment) argument
53 value = matching->getObject( key );
75 bool CompareDeviceUsage( IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment) argument
87 usage = matching->getObject( kIOHIDDeviceUsageKey );
88 usagePage = matching->getObject( kIOHIDDeviceUsagePageKey );
131 bool CompareDeviceUsagePairs( IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment) argument
141 pairArray = OSDynamicCast(OSArray, matching->getObject( kIOHIDDeviceUsagePairsKey ));
162 bool CompareProductID( IOService * owner, OSDictionary * matching, SInt32 * score) argument
174 // Compare each of the types of productID matching. Then in order of highest score to least
177 pidMatch = CompareProperty(owner, matching, kIOHIDProductIDKe
213 CompareNumberPropertyMask( IOService *owner, OSDictionary *matching, const char *key, const char *maskKey, SInt32 *score, SInt32 increment) argument
249 CompareNumberPropertyArray( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, SInt32 * score, SInt32 increment) argument
281 CompareNumberPropertyArrayWithMask( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, const char * maskKey, SInt32 * score, SInt32 increment) argument
[all...]
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A Duuid.c30 CFMutableDictionaryRef matching; local
39 matching = IOServiceMatching( kIOMediaClass );
40 if ( matching ) {
41 CFDictionarySetValue( matching, CFSTR( kIOMediaUUIDKey ), uuid_string );
42 media = IOServiceGetMatchingService( kIOMasterPortDefault, matching );
59 /* do not CFRelease( matching ); */
/macosx-10.9.5/IOPCIFamily-224.92.1/tools/
H A Diosetarg.c21 CFMutableDictionaryRef matching; local
29 matching = id ? IORegistryEntryIDMatching(id) : IOServiceMatching(argv[1]);
39 service = IOServiceGetMatchingService(kIOMasterPortDefault, matching);
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOCatalogue.h53 @discussion The IOCatalogue is a database which contains all IOKit driver personalities. IOService uses this resource when matching devices to their associated drivers.
90 @param generationCount Returns a reference to the generation count of the database. The generation count increases only when personalities are added to the database *and* IOService matching has been initiated.
97 @abstract A more general purpose interface which allows one to retreive driver personalities based the intersection of the 'matching' dictionary and the personality's own property list.
98 @param matching A dictionary containing only keys and values which are to be used for matching. For example, a matching dictionary containing 'IOProviderClass'='IOPCIDevice' will return all personalities with an IOProviderClass key and a value of IOPCIDevice.
99 @param generationCount Returns a reference to the current generation of the database. The generation count increases only when personalities are added to the database *and* IOService matching has been initiated.
102 OSOrderedSet * findDrivers( OSDictionary * matching, SInt32 * generationCount );
108 @param doNubMatchng Start matching process after personalities have been added.
115 @abstract Remove driver personalities from the database based on matching informatio
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/bsddev/
H A DIOKitBSDInit.cpp42 // how long to wait for matching root device, secs
160 OSDictionary * matching; local
166 matching = IOService::serviceMatching( "IONetworkInterface" );
167 if ( matching == 0 )
194 if ( matching->setObject( gIOPropertyMatchKey,
201 return( matching );
205 if ( matching ) matching->release();
267 OSDictionary * matching = NULL; local
288 matching
317 OSDictionary * matching = 0; local
[all...]
/macosx-10.9.5/libarchive-29/libarchive/cpio/
H A DCMakeLists.txt18 ../libarchive_fe/matching.c
19 ../libarchive_fe/matching.h
H A Dcpio.h34 #include "matching.h"
89 struct lafe_matching *matching; member in struct:cpio
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOCatalogue.cpp236 OSDictionary * matching,
246 OSKext::uniquePersonalityProperties(matching);
265 * "matching" dict to enable general searches.
267 if ( dict->isEqualTo(matching, matching) )
279 * Add driver config tables to catalog and start matching process.
372 // Start device matching.
388 * properties in the matching dictionary.
392 OSDictionary * matching,
402 if ( !matching )
235 findDrivers( OSDictionary * matching, SInt32 * generationCount) argument
391 removeDrivers( OSDictionary * matching, bool doNubMatching) argument
531 _terminateDrivers(OSDictionary * matching) argument
576 _removeDrivers(OSDictionary * matching) argument
613 terminateDrivers(OSDictionary * matching) argument
[all...]
H A DIOMapper.cpp153 OSDictionary * matching; local
171 matching = IOService::propertyMatching(gIOMapperIDKey, data);
175 matching = IOService::propertyMatching(gIOMapperIDKey, obj);
177 if (matching)
179 mapper = OSDynamicCast(IOMapper, IOService::waitForMatchingService(matching));
180 matching->release();
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ure/
H A DREADME30 This is a simple regular expression package for matching against Unicode text
173 * Look for the first match in some text. The matching will be done
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dmatchbrackets.js6 // Disable brace matching in long lines, since it'll cause hugely slow updates
9 var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"};
12 var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)];
25 var match = matching[ch];
/macosx-10.9.5/libarchive-29/libarchive/tar/
H A DCMakeLists.txt25 ../libarchive_fe/matching.c
26 ../libarchive_fe/matching.h
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dsize.c266 char **matching;
272 if (bfd_check_format_matches (abfd, bfd_object, &matching))
282 list_matching_formats (matching);
283 free (matching);
288 if (bfd_check_format_matches (abfd, bfd_core, &matching))
307 list_matching_formats (matching);
308 free (matching);
263 char **matching; local
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCProxies.c554 CFMutableArrayRef matching = NULL; local
620 if (matching == NULL) {
621 matching = CFArrayCreateMutable(NULL, 0, &kCFTypeArrayCallBacks);
623 n_matching = CFArrayGetCount(matching);
628 !CFArrayContainsValue(matching, CFRangeMake(0, n_matching), newProxy)) {
629 // add this matching proxy
630 CFArrayAppendValue(matching, newProxy);
635 if (matching != NULL) {
637 proxies = CFArrayCreateCopy(NULL, matching);
638 CFRelease(matching);
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/graphics.subproj/
H A DPEFSupport.c564 CFDictionaryRef matching = 0; local
593 matching = CFRetain(value);
602 if (!matching)
605 matching = CFDictionaryCreate( kCFAllocatorDefault,
611 if (!matching)
614 kr = IOServiceGetMatchingServices(masterPort, matching, &iter);
735 CFDictionaryRef matching = 0; local
760 matching = CFDictionaryGetValue(props, CFSTR("IONDRVMatching"));
761 if (matching && (CFDictionaryGetTypeID() != CFGetTypeID(matching)))
[all...]
/macosx-10.9.5/eap8021x-180/eapolclient.tproj/
H A DInterestNotification.c101 CFDictionaryRef matching; local
106 matching = IOBSDNameMatching(kIOMasterPortDefault, 0, if_name);
108 matching, &list);
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDManager.h42 matching dictionary, family, and driver, see the overview of I/O Kit terms
207 @abstract Sets matching criteria for device enumeration.
216 @param matching CFDictionaryRef containg device matching criteria.
221 CFDictionaryRef matching)
225 @abstract Sets multiple matching criteria for device enumeration.
231 containg device matching criteria.
251 @discussion Only device matching the set criteria will be enumerated.
313 @abstract Sets matching criteria for input values received via
319 restart the matching proces
[all...]
/macosx-10.9.5/bless-98/libbless/Misc/
H A DBLCreateBooterInformationDictionary.c559 CFMutableDictionaryRef matching; local
563 matching = IOServiceMatching(kIOMediaClass);
564 CFDictionarySetValue(matching, CFSTR(kIOBSDNameKey), bsdName);
568 matching);
592 CFMutableDictionaryRef matching; local
598 matching = IOServiceMatching(kIOMediaClass);
599 CFDictionarySetValue(matching, CFSTR(kIOMediaContentKey), CFSTR("C12A7328-F81F-11D2-BA4B-00A0C93EC93B"));
601 kret = IOServiceGetMatchingServices(kIOMasterPortDefault, matching, &iter);
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/old/
H A DAAA.test46 test {Info: all classes matching a pattern} {
/macosx-10.9.5/vim-53/runtime/ftplugin/
H A Dlua.vim24 " extended matching with the % key.
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dconf.vim12 " Avoid matching "text#text", used in /etc/disktab and /etc/gettytab

Completed in 279 milliseconds

1234567891011