Home
last modified time | relevance | path

Searched refs:fnmatch (Results 1 – 11 of 11) sorted by relevance

/Zephyr-Core-3.7.0/tests/posix/common/src/
Dfnmatch.c15 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/
Dfnmatch.h53 int fnmatch(const char *, const char *, int);
/Zephyr-Core-3.7.0/lib/posix/options/
DKconfig.c_lib_ext9 Group, consisting of fnmatch(), getopt(), getsubopt(), optarg, opterr, optind, optopt,
Dfnmatch.c258 int fnmatch(const char *pattern, const char *string, int flags) in fnmatch() function
DCMakeLists.txt49 fnmatch.c
DKconfig.deprecated19 bool "Support for fnmatch [DEPRECATED]"
/Zephyr-Core-3.7.0/subsys/shell/
Dshell_wildcard.c81 if (fnmatch(pattern, entry->syntax, 0) == 0) { in commands_expand()
/Zephyr-Core-3.7.0/scripts/ci/
Dtest_plan.py10 import fnmatch
366 found.update(fnmatch.filter(files_not_resolved, pattern))
/Zephyr-Core-3.7.0/doc/connectivity/networking/api/
Dhttp_server.rst136 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/
Dhttp_server_core.c693 ret = fnmatch(resource->resource, path, in get_resource_detail()
/Zephyr-Core-3.7.0/doc/services/portability/posix/option_groups/
Dindex.rst86 fnmatch(), yes