Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/bpf/
H A Dveristat.c464 static bool glob_matches(const char *str, const char *pat) in glob_matches() function
479 if (glob_matches(str++, pat)) in glob_matches()
521 return glob_matches(filename, f->any_glob) || in name_filter_matches()
522 (prog_name && glob_matches(prog_name, f->any_glob)); in name_filter_matches()
525 glob_matches(filename, f->file_glob) && in name_filter_matches()
526 glob_matches(prog_name, f->prog_glob); in name_filter_matches()
528 return glob_matches(filename, f->file_glob); in name_filter_matches()
530 return prog_name && glob_matches(prog_name, f->prog_glob); in name_filter_matches()
538 return glob_matches(filename, f->file_glob); in name_filter_may_match()