Lines Matching defs:conf
76 static unsigned int bm_find(struct ts_config *conf, struct ts_state *state)
78 struct ts_bm *bm = ts_config_priv(conf);
82 const u8 icase = conf->flags & TS_IGNORECASE;
87 text_len = conf->get_next_block(consumed, &text, conf, state);
163 struct ts_config *conf;
169 conf = alloc_ts_config(priv_size, gfp_mask);
170 if (IS_ERR(conf))
171 return conf;
173 conf->flags = flags;
174 bm = ts_config_priv(conf);
184 return conf;
187 static void *bm_get_pattern(struct ts_config *conf)
189 struct ts_bm *bm = ts_config_priv(conf);
193 static unsigned int bm_get_pattern_len(struct ts_config *conf)
195 struct ts_bm *bm = ts_config_priv(conf);