Home
last modified time | relevance | path

Searched refs:ISDOT (Results 1 – 10 of 10) sorted by relevance

/dragonfly/contrib/tcsh-6/
H A Dsh.dir.h52 #define ISDOT(c) (NTRM((c)[0]) == '.' && ((NTRM((c)[1]) == '\0') || \ macro
54 #define ISDOTDOT(c) (NTRM((c)[0]) == '.' && ISDOT(&((c)[1])))
H A Dtw.spell.c134 if (ISDOT(item) || ISDOTDOT(item)) in spdir()
H A Dsh.dir.c333 #define IS_DOT(sp, p) (ISDOT(p) && ((p) == (sp) || *((p) - 1) == '/')) in dnormalize()
H A Dtc.os.c1373 if (ISDOT(d->d_name) || ISDOTDOT(d->d_name)) in xgetcwd()
H A Dtw.parse.c993 if (showdots == DOT_NOT && (ISDOT(item.s) || ISDOTDOT(item.s))) in tw_collect_items()
/dragonfly/sbin/umount/
H A Dumount.c54 #define ISDOT(x) ((x)[0] == '.' && (x)[1] == '\0') macro
736 if (ISDOT(name + 1) || ISDOTDOT(name + 1)) in getrealname()
745 if (ISDOT(name) || ISDOTDOT(name)) in getrealname()
757 if (ISDOT(dirname)) { in getrealname()
/dragonfly/contrib/bmake/
H A Dutil.c230 #define ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/'))) macro
231 #define ISDOTDOT(c) ((c)[0] == '.' && ISDOT(&((c)[1])))
299 if (ISDOT(d->d_name) || ISDOTDOT(d->d_name)) in getwd()
/dragonfly/bin/rm/
H A Drm.c625 #define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2]))) macro
638 if (ISDOT(p)) { in checkdot()
/dragonfly/lib/libc/gen/
H A Dfts.c60 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
723 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) in fts_build()
908 if (ISDOT(p->fts_name)) in fts_stat()
/dragonfly/contrib/grep/lib/
H A Dfts.c232 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
1471 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) in fts_build()
1834 if (ISDOT(p->fts_name)) { in fts_stat()