Home
last modified time | relevance | path

Searched refs:compLen (Results 1 – 1 of 1) sorted by relevance

/xnu-8020.140.41/iokit/Kernel/
H A DIORegistryEntry.cpp1234 int len, maxLength, compLen, aliasLen; in getPath() local
1297 compLen = alias->getLength(); in getPath()
1298 ok = (maxLength > (len + compLen)); in getPath()
1300 strlcpy( nextComp, alias->getCStringNoCopy(), compLen + 1); in getPath()
1303 compLen = maxLength - len; in getPath()
1304 ok = entry->getPathComponent( nextComp + 1, &compLen, plane ); in getPath()
1306 if (ok && compLen) { in getPath()
1307 compLen++; in getPath()
1313 len += compLen; in getPath()
1314 nextComp += compLen; in getPath()