Lines Matching defs:asp
96 struct authsvc *asp;
99 /* VARIABLES PROTECTED BY authsvc_lock: asp, Auths */
128 for (asp = Auths; asp; asp = asp->next) {
129 if (asp->flavor == cred_flavor) {
132 as = (*asp->handler)(rqst, msg);
183 struct authsvc *asp;
197 for (asp = Auths; asp; asp = asp->next) {
198 if (asp->flavor == cred_flavor) {
206 asp = mem_alloc(sizeof (*asp));
207 if (asp == NULL) {
211 asp->flavor = cred_flavor;
212 asp->handler = handler;
213 asp->next = Auths;
214 Auths = asp;