Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:newcount

7777 mDNSlocal int BetterMatchForName(const domainname *name, int namecount, const domainname *newname, int newcount,
7782 if (namecount < newcount || newcount < bestcount) return -1;
7794 // Note: newcount can either be equal or greater than bestcount beause of the
7797 if (SameDomainName(SkipLeadingLabels(name, namecount - newcount), newname))
7798 return bestcount == newcount ? 0 : 1;