Lines Matching refs:kpp
171 struct keylenlist **kpp; in getkeylen() local
174 for (kpp = &mechtable.kp; in getkeylen()
175 *kpp != NULL && (*kpp)->keylen != k; in getkeylen()
176 kpp = &(*kpp)->next) in getkeylen()
177 debug(KEYSERV_DEBUG0, ("getkeylen failed %x", kpp)); in getkeylen()
178 debug(KEYSERV_DEBUG0, ("getkeylen return: %x", kpp)); in getkeylen()
179 return (kpp); in getkeylen()
183 appendkeylist(struct keylenlist **kpp, keylen_t k) in appendkeylist() argument
187 if (*kpp == NULL) { in appendkeylist()
193 debug(KEYSERV_DEBUG, ("appendkeylist : %x %x %d", kpp, kp, k)); in appendkeylist()
197 *kpp = kp; in appendkeylist()
207 getalgtype(struct keylenlist **kpp, algtype_t a) in getalgtype() argument
212 for (app = &(*kpp)->ap; in getalgtype()
250 struct keylenlist **kpp; in getmechtype() local
254 kpp = getkeylen(k); in getmechtype()
255 if (*kpp == NULL) { in getmechtype()
259 app = getalgtype(kpp, a); in getmechtype()
1916 struct keylenlist **kpp; in init_mechs() local
1923 kpp = getkeylen((*mechpp)->keylen); in init_mechs()
1924 appendkeylist(kpp, (*mechpp)->keylen); in init_mechs()
1925 app = getalgtype(kpp, (*mechpp)->algtype); in init_mechs()