Lines Matching refs:components
446 char components[MAXPATHLEN];
458 (void) memset(components, 0, MAXPATHLEN);
465 /* Trace back to the root node, accumulating components */
468 (void) strlcat(components, "/", MAXPATHLEN);
469 (void) strlcat(components, parent->hp_name, MAXPATHLEN);
483 * node, then append the accumulated components in reverse order.
491 for (i = strlen(components) - 1; i >= 0; i--) {
492 if (components[i] == '/') {
493 (void) strlcat(path, &components[i], MAXPATHLEN);
494 components[i] = '\0';