Lines Matching defs:path

121  * Other terms include the "minor path" term, specified explicitly if the
216 * (such as the minor node path, the acceptable state set (or A-set)
240 * CTD_ALL is specified, the minor node path is returned as well.
724 * There is no default minor path.
984 char *path;
986 path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
987 (void) ddi_pathname(dip, path);
989 "device=%s", path));
990 kmem_free(path, MAXPATHLEN);
1203 char *path;
1213 path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1217 bcopy(dtmpl->ctd_minor, path, strlen(dtmpl->ctd_minor) + 1);
1220 dip = e_ddi_hold_devi_by_path(path, 0);
1223 "for device path (%s)", path);
1224 kmem_free(path, MAXPATHLEN);
1236 minor = i_ddi_strdup(path, KM_SLEEP);
1237 kmem_free(path, MAXPATHLEN);
1278 * The "minor" path and "cred" is a part of the type specific
1329 char *path;
1352 * If the user set a minor path in the template before an open,
1353 * ignore it. We use the minor path of the actual minor opened.
1358 "ignoring device minor path in active template: %s",
1363 * path in the template.
1370 path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1372 if (ddi_dev_pathname(dev, spec_type, path) != DDI_SUCCESS) {
1374 "minor path from dev_t,spec {%lu, %d} for process (%d)",
1377 kmem_free(path, MAXPATHLEN);
1383 dtmpl->ctd_minor = path;
1393 kmem_free(path, MAXPATHLEN);
1589 char *path = NULL;
1621 path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1622 (void) ddi_pathname(dip, path);
1668 size_t len = strlen(path);
1674 ASSERT(strncmp(ctd->cond_minor, path, len) == 0 &&
1926 if (path)
1927 kmem_free(path, MAXPATHLEN);