Lines Matching defs:path

351  *	This routine is a convenience routine that is passed a path and returns
355 i_consconfig_createvp(char *path)
361 DPRINTF(DPRINT_L0, "i_consconfig_createvp: %s\n", path);
364 if (strchr(path, ':') == NULL) {
365 /* convert an OBP path to a /devices path */
367 if (i_ddi_prompath_to_devfspath(path, buf) != DDI_SUCCESS) {
375 /* convert a devfs path to a /devices path */
376 (void) snprintf(fullpath, MAXPATHLEN, "/devices%s", path);
398 char *path;
413 path = NULL;
415 path = consconfig_usb_kb_path;
417 path = usb_kb_path;
418 if (path != NULL)
419 DPRINTF(DPRINT_L0, "usb keyboard path = %s\n", path);
421 path = plat_kbdpath();
422 if (path != NULL)
423 DPRINTF(DPRINT_L0, "keyboard path = %s\n", path);
425 path = NULL;
427 path = consconfig_usb_ms_path;
429 path = usb_ms_path;
430 if (path != NULL)
431 DPRINTF(DPRINT_L0, "usb mouse path = %s\n", path);
433 path = plat_mousepath();
434 if (path != NULL)
435 DPRINTF(DPRINT_L0, "mouse path = %s\n", path);
437 path = plat_stdinpath();
438 if (path != NULL)
439 DPRINTF(DPRINT_L0, "stdin path = %s\n", path);
441 path = plat_stdoutpath();
442 if (path != NULL)
443 DPRINTF(DPRINT_L0, "stdout path = %s\n", path);
445 path = plat_fbpath();
446 if (path != NULL)
447 DPRINTF(DPRINT_L0, "fb path = %s\n", path);
712 char *path;
714 if (plat_virtual_console_path(&path) >= 0) {
717 sp->cons_stdin_path = path;
718 sp->cons_stdout_path = path;
1016 "virtual console device path %s\n", virtual_cons_path);
1893 char *path;
1903 path = get_alias(name, buf);
1904 if (path == NULL)
1907 tdev = ddi_pathname_to_dev_t(path);