Searched refs:FNM_PATHNAME (Results 1 - 25 of 79) sorted by relevance

1234

/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dfnmatch_.h27 # undef FNM_PATHNAME macro
32 # define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
37 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dfnmatch_.h27 # undef FNM_PATHNAME macro
32 # define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
37 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl2/diffutils/include/
H A Dfnmatch.h42 #undef FNM_PATHNAME macro
47 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
52 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl2/grep/dist/lib/
H A Dfnmatch.h44 #undef FNM_PATHNAME macro
49 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
54 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/binutils.old/dist/include/
H A Dfnmatch.h43 #undef FNM_PATHNAME macro
48 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
53 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/binutils/dist/include/
H A Dfnmatch.h43 #undef FNM_PATHNAME macro
48 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
53 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gcc.old/dist/include/
H A Dfnmatch.h43 #undef FNM_PATHNAME macro
48 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
53 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gdb.old/dist/include/
H A Dfnmatch.h43 #undef FNM_PATHNAME macro
48 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
53 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gcc/dist/include/
H A Dfnmatch.h43 #undef FNM_PATHNAME macro
48 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
53 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gdb/dist/include/
H A Dfnmatch.h43 #undef FNM_PATHNAME macro
48 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
53 #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl2/gmake/dist/glob/
H A Dfnmatch.h49 #undef FNM_PATHNAME macro
54 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
59 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/tests/lib/libc/gen/
H A Dt_fnmatch.c117 atf_tc_set_md_var(tc, "descr", "Test FNM_PATHNAME");
122 ATF_CHECK(fnmatch("???x", "xxx/x", FNM_PATHNAME) != 0);
123 ATF_CHECK(fnmatch("***x", "xxx/x", FNM_PATHNAME) != 0);
125 ATF_CHECK(fnmatch("???x", "xxxx", FNM_PATHNAME) == 0);
126 ATF_CHECK(fnmatch("*/xxx", "/xxx", FNM_PATHNAME) == 0);
127 ATF_CHECK(fnmatch("x/*.y", "x/z.y", FNM_PATHNAME) == 0);
141 ATF_CHECK(fnmatch("x?y", "x.y", FNM_PATHNAME | FNM_PERIOD) == 0);
142 ATF_CHECK(fnmatch("x*y", "x.y", FNM_PATHNAME | FNM_PERIOD) == 0);
143 ATF_CHECK(fnmatch("*.c", "x.c", FNM_PATHNAME | FNM_PERIOD) == 0);
144 ATF_CHECK(fnmatch("*/?", "x/y", FNM_PATHNAME | FNM_PERIO
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dfnmatch.c76 if (*string == '/' && (flags & FNM_PATHNAME))
80 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
92 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
97 if (flags & FNM_PATHNAME)
102 else if (c == '/' && flags & FNM_PATHNAME) {
112 if (test == '/' && flags & FNM_PATHNAME)
120 if (*string == '/' && flags & FNM_PATHNAME)
H A Dfnmatch.hin54 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dfnmatch.in.h45 #undef FNM_PATHNAME macro
50 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match '/'. */ macro
55 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dfnmatch.in.h45 #undef FNM_PATHNAME macro
50 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match '/'. */ macro
55 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/include/
H A Dfnmatch.h44 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */ macro
/netbsd-current/lib/libc/gen/
H A Dfnmatch.c138 if (*string == '/' && (flags & FNM_PATHNAME))
142 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
154 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
159 if (flags & FNM_PATHNAME)
165 } else if (c == '/' && flags & FNM_PATHNAME) {
181 if (test == '/' && flags & FNM_PATHNAME)
189 if (*string == '/' && flags & FNM_PATHNAME)
/netbsd-current/external/gpl2/mkhybrid/dist/
H A Dmatch.c63 if (fnmatch(mat[i], fn, FNM_PATHNAME) != FNM_NOMATCH) {
104 if (fnmatch(i_mat[i], fn, FNM_PATHNAME) != FNM_NOMATCH) {
150 if (fnmatch(j_mat[i], fn, FNM_PATHNAME) != FNM_NOMATCH) {
220 if (fnmatch(hfs_mat[i], fn, FNM_PATHNAME) != FNM_NOMATCH) {
/netbsd-current/external/mpl/bind/dist/contrib/dlz/modules/wildcard/
H A Ddlz_wildcard_dynamic.c64 #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */ macro
69 #define FNM_FILE_NAME FNM_PATHNAME
600 if (*string == '/' && (flags & FNM_PATHNAME)) {
605 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
620 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
627 if (flags & FNM_PATHNAME) {
637 } else if (c == '/' && flags & FNM_PATHNAME) {
651 if (test == '/' && flags & FNM_PATHNAME) {
661 if (*string == '/' && (flags & FNM_PATHNAME)) {
666 ((flags & FNM_PATHNAME)
[all...]
/netbsd-current/usr.sbin/mtree/
H A Dexcludes.c110 #define MATCH(g, n) (fnmatch((g), (n), FNM_PATHNAME) == 0)
/netbsd-current/external/gpl3/gdb.old/lib/libgnulib/arch/aarch64/gnulib/import/
H A Dfnmatch.h525 #undef FNM_PATHNAME macro
530 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match '/'. */ macro
535 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gdb.old/lib/libgnulib/arch/aarch64eb/gnulib/import/
H A Dfnmatch.h525 #undef FNM_PATHNAME macro
530 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match '/'. */ macro
535 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gdb.old/lib/libgnulib/arch/alpha/gnulib/import/
H A Dfnmatch.h525 #undef FNM_PATHNAME macro
530 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match '/'. */ macro
535 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
/netbsd-current/external/gpl3/gdb.old/lib/libgnulib/arch/arm/gnulib/import/
H A Dfnmatch.h525 #undef FNM_PATHNAME macro
530 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match '/'. */ macro
535 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */

Completed in 243 milliseconds

1234