Searched refs:fnmatch (Results 1 – 11 of 11) sorted by relevance
/Zephyr-Core-3.7.0/tests/posix/common/src/ |
D | fnmatch.c | 15 ZTEST(fnmatch, test_fnmatch) in ZTEST() argument 19 zassert_ok(fnmatch("*.c", "foo.c", 0)); in ZTEST() 20 zassert_ok(fnmatch("*.c", ".c", 0)); in ZTEST() 21 zassert_equal(fnmatch("*.a", "foo.c", 0), FNM_NOMATCH); in ZTEST() 22 zassert_ok(fnmatch("*.c", ".foo.c", 0)); in ZTEST() 23 zassert_equal(fnmatch("*.c", ".foo.c", FNM_PERIOD), FNM_NOMATCH); in ZTEST() 24 zassert_ok(fnmatch("*.c", "foo.c", FNM_PERIOD)); in ZTEST() 25 zassert_equal(fnmatch("a\\*.c", "a*.c", FNM_NOESCAPE), FNM_NOMATCH); in ZTEST() 26 zassert_equal(fnmatch("a\\*.c", "ax.c", 0), FNM_NOMATCH); in ZTEST() 27 zassert_ok(fnmatch("a[xy].c", "ax.c", 0)); in ZTEST() [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/posix/ |
D | fnmatch.h | 53 int fnmatch(const char *, const char *, int);
|
/Zephyr-Core-3.7.0/lib/posix/options/ |
D | Kconfig.c_lib_ext | 9 Group, consisting of fnmatch(), getopt(), getsubopt(), optarg, opterr, optind, optopt,
|
D | fnmatch.c | 258 int fnmatch(const char *pattern, const char *string, int flags) in fnmatch() function
|
D | CMakeLists.txt | 49 fnmatch.c
|
D | Kconfig.deprecated | 19 bool "Support for fnmatch [DEPRECATED]"
|
/Zephyr-Core-3.7.0/subsys/shell/ |
D | shell_wildcard.c | 81 if (fnmatch(pattern, entry->syntax, 0) == 0) { in commands_expand()
|
/Zephyr-Core-3.7.0/scripts/ci/ |
D | test_plan.py | 10 import fnmatch 366 found.update(fnmatch.filter(files_not_resolved, pattern))
|
/Zephyr-Core-3.7.0/doc/connectivity/networking/api/ |
D | http_server.rst | 136 with just one resource handler. The `fnmatch() 137 <https://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html>`__
|
/Zephyr-Core-3.7.0/subsys/net/lib/http/ |
D | http_server_core.c | 693 ret = fnmatch(resource->resource, path, in get_resource_detail()
|
/Zephyr-Core-3.7.0/doc/services/portability/posix/option_groups/ |
D | index.rst | 86 fnmatch(), yes
|