Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/tcsh/
HDsh.dir.h52 #define ISDOT(c) (NTRM((c)[0]) == '.' && ((NTRM((c)[1]) == '\0') || \ macro
54 #define ISDOTDOT(c) (NTRM((c)[0]) == '.' && ISDOT(&((c)[1])))
HDtw.spell.c134 if (ISDOT(item) || ISDOTDOT(item)) in spdir()
HDtc.os.c1373 if (ISDOT(d->d_name) || ISDOTDOT(d->d_name)) in xgetcwd()
HDsh.dir.c338 #define IS_DOT(sp, p) (ISDOT(p) && ((p) == (sp) || *((p) - 1) == '/')) in dnormalize()
HDtw.parse.c994 if (showdots == DOT_NOT && (ISDOT(item.s) || ISDOTDOT(item.s))) in tw_collect_items()
/freebsd-11-stable/crypto/openssh/openbsd-compat/
HDgetcwd.c47 #define ISDOT(dp) \ macro
171 if (ISDOT(dp)) in getcwd()
/freebsd-11-stable/lib/libc/gen/
HDgetcwd.c51 #define ISDOT(dp) \ macro
170 if (ISDOT(dp)) in getcwd()
HDfts.c69 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
741 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) in fts_build()
934 if (ISDOT(p->fts_name)) in fts_stat()
HDfts-compat.c79 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
743 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) in fts_build()
946 if (ISDOT(p->fts_name)) in fts_stat()
/freebsd-11-stable/contrib/bmake/
HDutil.c265 #define ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/'))) macro
266 #define ISDOTDOT(c) ((c)[0] == '.' && ISDOT(&((c)[1])))
335 if (ISDOT(d->d_name) || ISDOTDOT(d->d_name)) in getwd()
/freebsd-11-stable/contrib/mdocml/
HDcompat_fts.c65 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
408 if (ISDOT(dp->d_name)) in fts_build()
537 if (ISDOT(p->fts_name)) in fts_stat()
/freebsd-11-stable/bin/rm/
HDrm.c604 #define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2]))) macro
617 if (ISDOT(p)) { in checkdot()