Home
last modified time | relevance | path

Searched refs:cdev (Results 1 – 8 of 8) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/lib/
Dfastcwd.pl17 local($odev, $oino, $cdev, $cino, $tdev, $tino);
21 ($cdev, $cino) = stat('.');
23 ($odev, $oino) = ($cdev, $cino);
25 ($cdev, $cino) = stat('.');
26 last if $odev == $cdev && $oino == $cino;
DCwd.pm370 my($odev, $oino, $cdev, $cino, $tdev, $tino);
375 ($cdev, $cino) = ($orig_cdev, $orig_cino);
378 ($odev, $oino) = ($cdev, $cino);
380 ($cdev, $cino) = stat('.');
381 last if $odev == $cdev && $oino == $cino;
402 ($cdev, $cino) = stat('.');
404 if $cdev != $orig_cdev || $cino != $orig_cino;
/mirbsd/src/gnu/usr.bin/perl/ext/Cwd/
DCwd.xs273 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino; in Perl_getcwd_sv() local
286 cdev = orig_cdev; in Perl_getcwd_sv()
290 odev = cdev; in Perl_getcwd_sv()
300 cdev = statbuf.st_dev; in Perl_getcwd_sv()
303 if (odev == cdev && oino == cino) { in Perl_getcwd_sv()
374 cdev = statbuf.st_dev; in Perl_getcwd_sv()
377 if (cdev != orig_cdev || cino != orig_cino) { in Perl_getcwd_sv()
/mirbsd/src/sys/sys/
Dlkm.h110 struct cdevsw *cdev; member
114 struct cdevsw cdev; member
/mirbsd/src/usr.bin/file/magdir/
Dmacintosh40 0 string cdev Macintosh Control Panel (data)
42 65 string cdev Macintosh Control Panel(rsrc + data)
/mirbsd/src/sys/kern/
Dkern_lkm.c753 bcopy(&cdevsw[i], &args->lkm_olddev.cdev, in _lkm_dev()
757 bcopy(args->lkm_dev.cdev, &cdevsw[i], in _lkm_dev()
784 bcopy(&args->lkm_olddev.cdev, &cdevsw[i], in _lkm_dev()
/mirbsd/src/sbin/disklabel/
Deditor.c1906 mpsave(struct disklabel *lp, char **mp, char *cdev, char *fstabfile) in mpsave() argument
1927 if (strncmp(_PATH_DEV, cdev, sizeof(_PATH_DEV) - 1) == 0 && in mpsave()
1928 cdev[sizeof(_PATH_DEV) - 1] == 'r') { in mpsave()
1930 &cdev[sizeof(_PATH_DEV)]); in mpsave()
1932 if ((p = strrchr(cdev, '/')) == NULL || *(++p) != 'r') in mpsave()
1935 snprintf(bdev, sizeof(bdev), "%s%s", cdev, p + 1); in mpsave()
/mirbsd/src/gnu/usr.bin/perl/
Dutil.c4049 int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino; local
4061 cdev = orig_cdev;
4066 odev = cdev;
4076 cdev = statbuf.st_dev;
4079 if (odev == cdev && oino == cino) {
4150 cdev = statbuf.st_dev;
4153 if (cdev != orig_cdev || cino != orig_cino) {