Home
last modified time | relevance | path

Searched refs:match_exp (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dan_to_ln.c211 regex_t match_exp; in aname_do_match() local
238 if (!regcomp(&match_exp, regexp, REG_EXTENDED) && in aname_do_match()
239 !regexec(&match_exp, string, 1, &match_match, 0)) { in aname_do_match()
244 regfree(&match_exp); in aname_do_match()
289 regex_t match_exp; in do_replacement() local
295 if (!regcomp(&match_exp, regexp, REG_EXTENDED)) { in do_replacement()
300 if (!regexec(&match_exp, cp, 1, &match_match, 0)) { in do_replacement()
322 regfree(&match_exp); in do_replacement()
368 regfree(&match_exp); in do_replacement()
/illumos-gate/usr/src/lib/libbrand/common/
H A Dlibbrand.c990 char match_exp[MAXPATHLEN]; in brand_platform_iter_devices() local
1030 match_exp, sizeof (match_exp), in brand_platform_iter_devices()
1043 ret = func(data, (const char *)match_exp, (const char *)name); in brand_platform_iter_devices()
/illumos-gate/usr/src/cmd/krb5/kadmin/dbutil/
H A Ddump.c463 regex_t match_exp; local
485 match_error = regcomp(&match_exp, arglist->names[i], REG_EXTENDED);
488 &match_exp,
498 match_error = regexec(&match_exp, name, 1, &match_match, 0);
502 &match_exp,
519 regfree(&match_exp);