Lines Matching refs:ex
102 free_exclude (struct exclude *ex) in free_exclude() argument
104 free (ex->exclude); in free_exclude()
105 free (ex); in free_exclude()
137 excluded_filename (struct exclude const *ex, char const *f) in excluded_filename() argument
139 size_t exclude_count = ex->exclude_count; in excluded_filename()
146 struct patopts const *exclude = ex->exclude; in excluded_filename()
183 add_exclude (struct exclude *ex, char const *pattern, int options) in add_exclude() argument
187 if (ex->exclude_count == ex->exclude_alloc) in add_exclude()
188 ex->exclude = x2nrealloc (ex->exclude, &ex->exclude_alloc, in add_exclude()
189 sizeof *ex->exclude); in add_exclude()
191 patopts = &ex->exclude[ex->exclude_count++]; in add_exclude()
203 struct exclude *ex, char const *filename, int options, in add_exclude_file() argument
255 (*add_func) (ex, pattern, options); in add_exclude_file()