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

/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_search.c464 Boolean matched; local
467 matched = true; /* Assume it will all match */
471 matched = false;
476 return matched;
539 // if we get here, no name matched
656 Boolean matched, atleastone; local
670 matched = false;
677 matched = false;
706 matched = false;
715 matched
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/platform/
H A DAppleMacIODevice.h50 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
H A DAppleMacIO.h69 OSString ** matched = 0 ) const;
/macosx-10.5.8/xnu-1228.15.4/iokit/Drivers/platform/drvAppleMacIO/
H A DAppleMacIO.cpp151 OSString * name, OSString ** matched ) const
153 return( IODTCompareNubName( nub, name, matched )
154 || nub->IORegistryEntry::compareName( name, matched ) );
273 OSString ** matched ) const
275 return (IODTCompareNubName(this, name, matched) ||
276 IORegistryEntry::compareName(name, matched));
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/commpage/
H A Dcommpage.c83 static int matched; // true if we've found a match for "current" routine variable
318 if ((cur_routine!=0) && (matched==0))
321 matched = 0;
328 if (matched)
330 matched = 1;
403 if (!matched)
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOPlatformExpert.h125 OSString ** matched = 0 ) const;
211 OSString ** matched = 0 ) const;
279 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
304 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
H A DIORegistryEntry.h638 @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.
641 virtual bool compareNames( OSObject * name, OSString ** matched = 0 ) const;
647 @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.
650 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/commpage/
H A Dcommpage.c69 static int matched; // true if we've found a match for "current" routine variable
546 if ((cur_routine!=0) && (matched==0))
549 matched = 0;
556 if (matched)
558 matched = 1;
649 if (!matched)
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOPlatformExpert.cpp190 OSString * name, OSString ** matched ) const
192 return( nub->IORegistryEntry::compareName( name, matched ));
487 // provides an XML power tree description against which a device is matched based
1071 OSString * name, OSString ** matched ) const
1073 return( IODTCompareNubName( nub, name, matched )
1074 || super::compareNubName( nub, name, matched) );
1254 OSString ** matched ) const
1256 return( IODTCompareNubName( this, name, matched ));
1363 OSString ** matched ) const
1366 compareNubName( this, name, matched ));
[all...]
H A DIODeviceTreeSupport.cpp781 bool matched; local
803 matched = (0 == strncmp( ckey, names, keyLen - 1 ));
805 matched = (keyLen == strlen( names ))
808 if( matched)
813 } while( (names < lastName) && (false == matched));
823 bool matched; local
825 matched = (0 != (result = CompareKey( name, regEntry, gIODTNameKey)))
H A DIORegistryEntry.cpp796 IORegistryEntry::compareName( OSString * name, OSString ** matched ) const
803 if( isEqual && matched) {
805 *matched = name;
815 IORegistryEntry::compareNames( OSObject * names, OSString ** matched ) const
830 result = compareName( string, matched );
H A DIOService.cpp373 // Probe a matched service and return an instance to be started.
702 * Called on a matched service to allocate resources
2572 * If this is the Sandbox driver and it matched, this is a
2574 * matched.
3958 OSString * matched; local
3988 match = where->compareNames( obj, changesOK ? &matched : 0 );
3991 if( changesOK && matched) {
3992 // leave a hint as to which name matched
3993 table->setObject( gIONameMatchedKey, matched );
3994 matched
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/pci/
H A DIOPCIDevice.h92 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Din6_prefix.c161 /* search matched prefix */
187 /* search matched prefix */
194 * search matched addr, and then search prefix
239 * Return 1 if anything matched, and 0 if nothing matched.
246 int matchlen, matched = 0; local
248 /* search matched prefixes */
262 matched = 1;
269 * search matched addr, and then search prefixes
285 matched
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_subs.c2077 int matched = 0; local
2086 matched = 1;
2093 matched = 1;
2099 if (matched)
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/
H A Ddtrace.c6560 zoneid_t zoneid, int (*matched)(dtrace_probe_t *, void *), void *arg)
6576 (void) (*matched)(probe, arg);
6623 if ((*matched)(probe, arg) != DTRACE_MATCH_NEXT)
6643 if ((*matched)(probe, arg) != DTRACE_MATCH_NEXT)
7284 * consumer comes along, or whenever a retained enabling is to be matched.) If
10657 int matched = 0;
10668 matched += dtrace_probe_enable(&ep->dted_probe, enab);
10696 *nmatched = matched;
10726 int matched, total_matched = 0, err;
10737 if ((err = dtrace_enabling_match(enab, &matched)) !
[all...]

Completed in 204 milliseconds