Lines Matching defs:suite_glob
63 char *suite_glob;
67 /* Split "suite_glob.test_glob" into two. Assumes filter_glob is not empty. */
75 parsed->suite_glob = kzalloc(len + 1, GFP_KERNEL);
76 if (!parsed->suite_glob)
80 strcpy(parsed->suite_glob, filter_glob);
84 parsed->suite_glob = kzalloc(period - filter_glob + 1, GFP_KERNEL);
85 if (!parsed->suite_glob)
90 kfree(parsed->suite_glob);
94 strncpy(parsed->suite_glob, filter_glob, period - filter_glob);
197 if (!glob_match(parsed_glob.suite_glob, filtered_suite->name))
253 kfree(parsed_glob.suite_glob);