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