Home
last modified time | relevance | path

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

/glibc-2.36/posix/
Dtestfnm.c14 { "a/b", "a[/]b", FNM_PATHNAME, FNM_NOMATCH },
16 { "a/b", "*", FNM_PATHNAME, FNM_NOMATCH },
17 { "a/b", "*[/]b", FNM_PATHNAME, FNM_NOMATCH },
18 { "a/b", "*[b]", FNM_PATHNAME, FNM_NOMATCH },
33 { "aa/b", "?""?""?b", FNM_PATHNAME, FNM_NOMATCH },
34 { ".a/b", "?a/b", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH },
35 { "a/.b", "a/?b", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH },
36 { ".a/b", "*a/b", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH },
37 { "a/.b", "a/*b", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH },
38 { ".a/b", "[.]a/b", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH },
[all …]
Dfnmatch.h27 #undef FNM_PATHNAME
32 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */ macro
37 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
Dtst-fnmatch2.c21 if (fnmatch ("a*b/*", "abbb/.x", FNM_PATHNAME | FNM_PERIOD) != FNM_NOMATCH) in do_test()
26 if (fnmatch ("a*b/*", "abbb/xy", FNM_PATHNAME | FNM_PERIOD) != 0) in do_test()
Dtst-fnmatch.c254 result |= FNM_PATHNAME; in convert_flags()
306 if (flags & FNM_PATHNAME) in flag_output()
/glibc-2.36/conform/data/
Dfnmatch.h-data3 constant FNM_PATHNAME
/glibc-2.36/manual/
Dpattern.texi84 @item FNM_PATHNAME
/glibc-2.36/ChangeLog.old/
DChangeLog.1555 * posix/fnmatch.h (FNM_FILE_NAME): Alias for FNM_PATHNAME.
DChangeLog.101221 * posix/testfnm.c: Add new test case. Use FNM_PATHNAME instead of
11686 (fnmatch, case '*'): Correct handling if FNM_PATHNAME is set.
11688 * posix/testfnm.c: Add test cases for * with FNM_PATHNAME errors.
DChangeLog.2396 * posix/fnmatch.h: #undef FNM_PATHNAME, FNM_NOESCAPE, and
/glibc-2.36/
DNEWS7211 * `FNM_FILE_NAME' is another name for `FNM_PATHNAME', used with `fnmatch'.