Lines Matching refs:kpp
169 struct keylenlist **kpp; in getkeylen() local
172 for (kpp = &mechtable.kp; in getkeylen()
173 *kpp != NULL && (*kpp)->keylen != k; in getkeylen()
174 kpp = &(*kpp)->next) in getkeylen()
175 debug(KEYSERV_DEBUG0, ("getkeylen failed %x", kpp)); in getkeylen()
176 debug(KEYSERV_DEBUG0, ("getkeylen return: %x", kpp)); in getkeylen()
177 return (kpp); in getkeylen()
181 appendkeylist(struct keylenlist **kpp, keylen_t k) in appendkeylist() argument
185 if (*kpp == NULL) { in appendkeylist()
191 debug(KEYSERV_DEBUG, ("appendkeylist : %x %x %d", kpp, kp, k)); in appendkeylist()
195 *kpp = kp; in appendkeylist()
205 getalgtype(struct keylenlist **kpp, algtype_t a) in getalgtype() argument
210 for (app = &(*kpp)->ap; in getalgtype()
248 struct keylenlist **kpp; in getmechtype() local
252 kpp = getkeylen(k); in getmechtype()
253 if (*kpp == NULL) { in getmechtype()
257 app = getalgtype(kpp, a); in getmechtype()
1914 struct keylenlist **kpp; in init_mechs() local
1921 kpp = getkeylen((*mechpp)->keylen); in init_mechs()
1922 appendkeylist(kpp, (*mechpp)->keylen); in init_mechs()
1923 app = getalgtype(kpp, (*mechpp)->algtype); in init_mechs()