Lines Matching defs:physpath
323 char *physpath, *cp;
326 if ((physpath = strdup(path)) == NULL) {
331 * physpath must always have a minor name component
333 if ((cp = strrchr(physpath, ':')) == NULL) {
334 free(physpath);
344 return (physpath);
355 if ((cp = strrchr(physpath, '/')) == NULL || (cp == physpath)) {
356 free(physpath);
370 if ((cp = strrchr(physpath, '/')) != NULL && (cp != physpath)) {
376 return (physpath);
963 * removes all registered devlinks to physical path <physpath> except for
965 * <physpath> must include the minor node
968 pci_cfg_rm_invalid_links(char *physpath, char *valid)
974 dnp = devfsadm_lookup_dev_names(physpath, NULL, &dnlen);