Searched refs:list_match (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/crypto/heimdal/appl/login/
H A Dlogin_access.c49 static int list_match(char *list, struct login_info *item,
115 match = (list_match(froms, &item, from_match)
116 && list_match(users, &item, user_match));
125 /* list_match - match an item against a list of tokens with exceptions */
128 list_match(char *list, function
156 if (tok == 0 || list_match(NULL, item, match_fn) == NO)
/freebsd-10.1-release/crypto/heimdal/appl/rsh/
H A Dlogin_access.c49 static int list_match(char *list, struct login_info *item,
115 match = (list_match(froms, &item, from_match)
116 && list_match(users, &item, user_match));
125 /* list_match - match an item against a list of tokens with exceptions */
128 list_match(char *list, function
156 if (tok == 0 || list_match(NULL, item, match_fn) == NO)
/freebsd-10.1-release/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c45 static int list_match(char *, const char *,
101 match = (list_match(froms, from, from_match)
102 && list_match(users, user, user_match));
111 /* list_match - match an item against a list of tokens with exceptions */
114 list_match(char *list, const char *item, function
138 if (tok == 0 || list_match((char *) 0, item, match_fn) == NO)
/freebsd-10.1-release/contrib/tcp_wrappers/
H A Dhosts_access.c90 static int list_match();
184 match = list_match(sv_list, request, server_match)
185 && list_match(cl_list, request, client_match);
208 /* list_match - match a request against a list of patterns with exceptions */
210 static int list_match(list, request, match_fn) function
230 return (tok == 0 || list_match((char *) 0, request, match_fn) == 0);

Completed in 64 milliseconds