Home
last modified time | relevance | path

Searched refs:dpn (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/bootfs/
H A Dbootfs_vfsops.c69 struct pathname dpn; in bootfs_mount() local
101 (uap->flags & MS_SYSSPACE) ? UIO_SYSSPACE : UIO_USERSPACE, &dpn); in bootfs_mount()
114 pn_free(&dpn); in bootfs_mount()
130 bfs->bfs_mntpath = kmem_alloc(dpn.pn_pathlen + 1, KM_SLEEP); in bootfs_mount()
131 bcopy(dpn.pn_path, bfs->bfs_mntpath, dpn.pn_pathlen); in bootfs_mount()
132 bfs->bfs_mntpath[dpn.pn_pathlen] = '\0'; in bootfs_mount()
133 pn_free(&dpn); in bootfs_mount()
/illumos-gate/usr/src/cmd/mandoc/
H A Dtbl_term.c576 const struct tbl_dat *dpn; /* Data cell below this line. */ in tbl_hrule() local
587 dpn = NULL; in tbl_hrule()
590 dpn = spn->first; in tbl_hrule()
592 dpn = spn->next->first; in tbl_hrule()
624 (dpn == NULL || dpn->string == NULL || in tbl_hrule()
625 strcmp(dpn->string, "\\^") != 0)) in tbl_hrule()
655 while (dpn != NULL && dpn->layout != cpn) in tbl_hrule()
656 dpn = dpn->next; in tbl_hrule()
673 (dpn == NULL || dpn->string == NULL || in tbl_hrule()
674 strcmp(dpn->string, "\\^") != 0)) in tbl_hrule()
/illumos-gate/usr/src/uts/common/fs/tmpfs/
H A Dtmp_vfsops.c236 struct pathname dpn; in tmp_mount() local
297 (uap->flags & MS_SYSSPACE) ? UIO_SYSSPACE : UIO_USERSPACE, &dpn)) in tmp_mount()
316 pn_free(&dpn); in tmp_mount()
347 tm->tm_mntpath = tmp_memalloc(dpn.pn_pathlen + 1, TMP_MUSTHAVE); in tmp_mount()
348 (void) strcpy(tm->tm_mntpath, dpn.pn_path); in tmp_mount()
400 pn_free(&dpn); in tmp_mount()
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vfsops.c270 struct pathname dpn; in ufs_mount() local
326 if (error = pn_get(uap->dir, fromspace, &dpn)) in ufs_mount()
333 pn_free(&dpn); in ufs_mount()
341 pn_free(&dpn); in ufs_mount()
355 pn_free(&dpn); in ufs_mount()
377 pn_free(&dpn); in ufs_mount()
427 dpn.pn_path, cr, 0, &args, datalen); in ufs_mount()
440 pn_free(&dpn); in ufs_mount()
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vfsops.c291 struct pathname dpn; in hsfs_mount() local
338 UIO_SYSSPACE : UIO_USERSPACE, &dpn); in hsfs_mount()
344 pn_free(&dpn); in hsfs_mount()
352 pn_free(&dpn); in hsfs_mount()
359 error = hs_mountfs(vfsp, dev, dpn.pn_path, mode, flags, cr, 0); in hsfs_mount()
360 pn_free(&dpn); in hsfs_mount()
/illumos-gate/usr/src/cmd/troff/
H A Dext.h84 extern int dpn;
H A Dn7.c530 dpn++;
531 if (dpn >= stop) {
532 dpn = 0;
H A Dni.c111 int dpn = -1; variable
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_vfsops.c186 struct pathname dpn; in udf_mount() local
210 if (error = pn_get(uap->dir, UIO_USERSPACE, &dpn)) { in udf_mount()
219 pn_free(&dpn); in udf_mount()
307 error = ud_mountfs(vfsp, why, dev, dpn.pn_path, cr, 0); in udf_mount()
312 pn_free(&dpn); in udf_mount()