Lines Matching defs:app
209 struct algtypelist **app;
212 for (app = &(*kpp)->ap;
213 *app != NULL && (*app)->algtype != a;
214 app = &(*app)->next)
215 debug(KEYSERV_DEBUG0, ("getalgtype key: %x", app));
216 debug(KEYSERV_DEBUG0, ("getalgtype return: %x", app));
217 return (app);
221 appendalgtype(struct algtypelist **app, algtype_t a)
225 if (*app == NULL) {
231 debug(KEYSERV_DEBUG, ("appendalgtype : %x %x %d", app, ap, a));
238 *app = ap;
251 struct algtypelist **app;
259 app = getalgtype(kpp, a);
260 if (*app == NULL) {
264 debug(KEYSERV_DEBUG0, ("getmechtype found %x", app));
265 debug(KEYSERV_DEBUG0, ("getmechtype return %x", &(*app)->mech));
266 return (&(*app)->mech);
1917 struct algtypelist **app;
1925 app = getalgtype(kpp, (*mechpp)->algtype);
1926 appendalgtype(app, (*mechpp)->algtype);