Lines Matching refs:obp_path
6681 char *obp_path; in pathname_work_obp() local
6687 "obp-path", &obp_path) == DDI_PROP_SUCCESS) { in pathname_work_obp()
6688 (void) strcpy(path, obp_path); in pathname_work_obp()
6689 ddi_prop_free(obp_path); in pathname_work_obp()
6700 obp_path = pathname_work_obp(ddi_get_parent(dip), path); in pathname_work_obp()
6701 if (obp_path == NULL) in pathname_work_obp()
6735 char *obp_path = NULL; in ddi_pathname_obp_set() local
6741 obp_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP); in ddi_pathname_obp_set()
6745 if (ddi_pathname_obp(pdip, obp_path) == NULL) { in ddi_pathname_obp_set()
6746 (void) ddi_pathname(pdip, obp_path); in ddi_pathname_obp_set()
6750 (void) strncat(obp_path, "/", MAXPATHLEN); in ddi_pathname_obp_set()
6751 (void) strncat(obp_path, component, MAXPATHLEN); in ddi_pathname_obp_set()
6754 obp_path); in ddi_pathname_obp_set()
6756 if (obp_path) in ddi_pathname_obp_set()
6757 kmem_free(obp_path, MAXPATHLEN); in ddi_pathname_obp_set()