/src/lib/libpam/modules/pam_login_access/ |
login_access.c | 54 static int string_match(const char *, const char *); 191 } else if (string_match(tok, string)) { /* ALL or exact match */ 221 } else if (string_match(tok, string)) { /* ALL or exact match */ 237 /* string_match - match a string against one token */ 240 string_match(const char *tok, const char *string) function in typeref:typename:int
|
/src/lib/libwrap/ |
hosts_access.c | 96 static int string_match(char *, char *); 268 return (string_match(tok, eval_daemon(request))); 270 return (string_match(tok, eval_daemon(request)) 286 && string_match(tok, eval_user(request))); 329 return (string_match(tok, eval_hostaddr(host)) 330 || (NOT_INADDR(tok) && string_match(tok, eval_hostname(host)))); 391 /* string_match - match string against pattern */ 394 string_match(char *tok, char *string) function in typeref:typename:int
|
/src/usr.sbin/altq/libaltq/ |
quip_server.c | 392 * string_match compares 2 strings and returns 1 when s1 matches s2. 397 string_match(const char *s1, const char *s2) function in typeref:typename:int 459 if (arg == NULL || string_match(arg, tmp)) { 473 if (arg == NULL || string_match(arg, tmp)) { 486 if (arg == NULL || string_match(arg, tmp)) {
|