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

/darwin-on-arm/xnu/iokit/Drivers/KernelBuiltIn/ARM/AppleARMPlatform/
H A DAppleARMIO.cpp103 bool AppleARMIOBus::compareNubName(const IOService * nub, OSString * name, OSString ** matched) const const
105 return (IODTCompareNubName(nub, name, matched)
106 || nub->IORegistryEntry::compareName(name, matched));
132 bool AppleARMIODevice::compareName(OSString * name, OSString ** matched) const const
134 return (IODTCompareNubName(this, name, matched) || IORegistryEntry::compareName(name, matched));
H A DAppleARMIO.h30 virtual bool compareName(OSString * name, OSString ** matched = 0) const;
62 virtual bool compareNubName(const IOService * nub, OSString * name, OSString ** matched = 0) const;
/darwin-on-arm/xnu/iokit/IOKit/platform/
H A DAppleMacIODevice.h50 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
H A DAppleMacIO.h69 OSString ** matched = 0 ) const;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_search.c484 Boolean matched; local
487 matched = true; /* Assume it will all match */
491 matched = false;
496 return matched;
652 Boolean matched, atleastone; local
666 matched = false;
673 matched = false;
702 matched = false;
711 matched = true; /* Assume we got a match */
720 matched
[all...]
/darwin-on-arm/xnu/iokit/Drivers/platform/drvAppleMacIO/
H A DAppleMacIO.cpp153 OSString * name, OSString ** matched ) const
155 return( IODTCompareNubName( nub, name, matched )
156 || nub->IORegistryEntry::compareName( name, matched ) );
279 OSString ** matched ) const
281 return (IODTCompareNubName(this, name, matched) ||
282 IORegistryEntry::compareName(name, matched));
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOPlatformExpert.h134 OSString ** matched = 0 ) const;
220 OSString ** matched = 0 ) const;
288 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
313 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
H A DIORegistryEntry.h650 @param matched If the caller wants the successfully matched name returned, pass a non-zero pointer for the matched parameter and an OSString will be returned here. It should be released by the caller.
653 virtual bool compareNames( OSObject * name, OSString ** matched = 0 ) const;
659 @param matched If the caller wants the successfully matched name returned, pass a non-zero pointer for the matched parameter and an OSString will be returned here. It should be released by the caller. Generally, this will be the same as the name parameter, but may not be if wildcards are used.
662 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOPlatformExpert.cpp188 OSString * name, OSString ** matched ) const
190 return( nub->IORegistryEntry::compareName( name, matched ));
452 // provides an XML power tree description against which a device is matched based
1178 OSString * name, OSString ** matched ) const
1180 return( IODTCompareNubName( nub, name, matched )
1181 || super::compareNubName( nub, name, matched) );
1361 OSString ** matched ) const
1363 return( IODTCompareNubName( this, name, matched ));
1470 OSString ** matched ) const
1473 compareNubName( this, name, matched ));
[all...]
H A DIODeviceTreeSupport.cpp782 bool matched; local
804 matched = (0 == strncmp( ckey, names, keyLen - 1 ));
806 matched = (keyLen == strlen( names ))
809 if( matched)
814 } while( (names < lastName) && (false == matched));
824 bool matched; local
826 matched = (0 != (result = CompareKey( name, regEntry, gIODTNameKey)))
H A DIORegistryEntry.cpp837 IORegistryEntry::compareName( OSString * name, OSString ** matched ) const
844 if( isEqual && matched) {
846 *matched = name;
856 IORegistryEntry::compareNames( OSObject * names, OSString ** matched ) const
871 result = compareName( string, matched );
H A DIOService.cpp416 // Probe a matched service and return an instance to be started.
755 * Called on a matched service to allocate resources
4607 OSString * matched; local
4635 match = compareNames( obj, changesOK ? &matched : 0 );
4637 if( changesOK && matched) {
4638 // leave a hint as to which name matched
4639 table->setObject( gIONameMatchedKey, matched );
4640 matched->release();
/darwin-on-arm/xnu/iokit/IOKit/pci/
H A DIOPCIDevice.h92 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6_prefix.c189 /* search matched prefix */
216 /* search matched prefix */
223 * search matched addr, and then search prefix
275 * Return 1 if anything matched, and 0 if nothing matched.
282 int matchlen, matched = 0;
284 /* search matched prefixes */
298 matched = 1;
305 * search matched addr, and then search prefixes
326 matched
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_subs.c2512 int matched = 0; local
2521 matched = 1;
2548 matched = 1;
2555 if (matched)
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c7792 zoneid_t zoneid, int (*matched)(dtrace_probe_t *, void *), void *arg)
7808 if ((*matched)(probe, arg) == DTRACE_MATCH_FAIL)
7866 if ((rc = (*matched)(probe, arg)) != DTRACE_MATCH_NEXT) {
7889 if ((rc = (*matched)(probe, arg)) != DTRACE_MATCH_NEXT) {
8562 * consumer comes along, or whenever a retained enabling is to be matched.) If
12113 int total_matched = 0, matched = 0;
12128 if ((matched = dtrace_probe_enable(&ep->dted_probe, enab)) < 0)
12131 total_matched += matched;
12199 * If an enabling is to be enabled without having matched probes (that is, if
14091 * is if the anonymous enabling ultimately matched anythin
[all...]

Completed in 133 milliseconds