Lines Matching refs:conf
203 struct ts_config *conf, in get_linear_data() argument
229 unsigned int textsearch_find_continuous(struct ts_config *conf, in textsearch_find_continuous() argument
235 conf->get_next_block = get_linear_data; in textsearch_find_continuous()
239 return textsearch_find(conf, state); in textsearch_find_continuous()
265 struct ts_config *conf; in textsearch_prepare() local
287 conf = ops->init(pattern, len, gfp_mask, flags); in textsearch_prepare()
288 if (IS_ERR(conf)) { in textsearch_prepare()
289 err = PTR_ERR(conf); in textsearch_prepare()
293 conf->ops = ops; in textsearch_prepare()
294 return conf; in textsearch_prepare()
311 void textsearch_destroy(struct ts_config *conf) in textsearch_destroy() argument
313 if (conf->ops) { in textsearch_destroy()
314 if (conf->ops->destroy) in textsearch_destroy()
315 conf->ops->destroy(conf); in textsearch_destroy()
316 module_put(conf->ops->owner); in textsearch_destroy()
319 kfree(conf); in textsearch_destroy()