Lines Matching defs:conf
58 static unsigned int bm_find(struct ts_config *conf, struct ts_state *state)
60 struct ts_bm *bm = ts_config_priv(conf);
64 const u8 icase = conf->flags & TS_IGNORECASE;
69 text_len = conf->get_next_block(consumed, &text, conf, state);
146 struct ts_config *conf;
152 conf = alloc_ts_config(priv_size, gfp_mask);
153 if (IS_ERR(conf))
154 return conf;
156 conf->flags = flags;
157 bm = ts_config_priv(conf);
167 return conf;
170 static void *bm_get_pattern(struct ts_config *conf)
172 struct ts_bm *bm = ts_config_priv(conf);
176 static unsigned int bm_get_pattern_len(struct ts_config *conf)
178 struct ts_bm *bm = ts_config_priv(conf);