Lines Matching refs:asp
105 struct authsvc *asp;
108 /* VARIABLES PROTECTED BY authsvc_lock: asp, Auths */
132 for (asp = Auths; asp; asp = asp->next) {
133 if (asp->flavor == cred_flavor) {
136 as = (*asp->handler)(rqst, msg);
182 struct authsvc *asp;
196 for (asp = Auths; asp; asp = asp->next) {
197 if (asp->flavor == cred_flavor) {
205 asp = malloc(sizeof (*asp));
206 if (asp == NULL) {
210 asp->flavor = cred_flavor;
211 asp->handler = handler;
212 asp->next = Auths;
213 Auths = asp;