Lines Matching refs:regexp
38 #error I cannot find any regexp functions
75 * regexp (w) the ed-style regexp created from glob
79 * regexp is filled in with allocated memory contained a regular
82 * character and realm is not NULL, "@*" is appended to the regexp.
93 * regexp is anchored with ^ and $
95 static kadm5_ret_t glob_to_regexp(char *glob, char *realm, char **regexp)
104 /* A character of glob can turn into two in regexp, plus ^ and $ */
111 *regexp = p;
210 char *regexp;
221 ®exp)) != KADM5_OK)
226 ((data.expbuf = compile(regexp, NULL, NULL)) == NULL)
229 ((regcomp(&data.preg, regexp, REG_NOSUB)) != 0)
232 ((msg = (char *) re_comp(regexp)) != NULL)
237 free(regexp);
246 free(regexp);
257 free(regexp);