Lines Matching refs:obp_path
6600 char *obp_path; in pathname_work_obp() local
6606 "obp-path", &obp_path) == DDI_PROP_SUCCESS) { in pathname_work_obp()
6607 (void) strcpy(path, obp_path); in pathname_work_obp()
6608 ddi_prop_free(obp_path); in pathname_work_obp()
6619 obp_path = pathname_work_obp(ddi_get_parent(dip), path); in pathname_work_obp()
6620 if (obp_path == NULL) in pathname_work_obp()
6654 char *obp_path = NULL; in ddi_pathname_obp_set() local
6660 obp_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP); in ddi_pathname_obp_set()
6664 if (ddi_pathname_obp(pdip, obp_path) == NULL) { in ddi_pathname_obp_set()
6665 (void) ddi_pathname(pdip, obp_path); in ddi_pathname_obp_set()
6669 (void) strncat(obp_path, "/", MAXPATHLEN); in ddi_pathname_obp_set()
6670 (void) strncat(obp_path, component, MAXPATHLEN); in ddi_pathname_obp_set()
6673 obp_path); in ddi_pathname_obp_set()
6675 if (obp_path) in ddi_pathname_obp_set()
6676 kmem_free(obp_path, MAXPATHLEN); in ddi_pathname_obp_set()