Home
last modified time | relevance | path

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

/xnu-11215/iokit/Kernel/
H A DIORegistryEntry.cpp1249 int len, maxLength, compLen, aliasLen; in getPath() local
1315 compLen = alias->getLength(); in getPath()
1316 ok = (maxLength > (len + compLen)); in getPath()
1318 strlcpy( nextComp.discard_bounds(), alias->getCStringNoCopy(), compLen + 1); in getPath()
1321 compLen = maxLength - len; in getPath()
1322 ok = entry->getPathComponent( nextComp.discard_bounds() + 1, &compLen, plane ); in getPath()
1324 if (ok && compLen) { in getPath()
1325 compLen++; in getPath()
1331 len += compLen; in getPath()
1332 nextComp += compLen; in getPath()