Lines Matching refs:cpp

459 	struct cacheuid_list **cpp;  in mapuid2cache()  local
463 for (cpp = &mdp->bucket[hash]; in mapuid2cache()
464 *cpp != NULL && (*cpp)->uid != uid; in mapuid2cache()
465 cpp = &(*cpp)->next) { in mapuid2cache()
466 debug(KEYSERV_DEBUG0, ("mapuid2cache %x", cpp)); in mapuid2cache()
468 debug(KEYSERV_DEBUG, ("mapuid2cache ret %x", cpp)); in mapuid2cache()
469 return (cpp); in mapuid2cache()
476 struct cacheuid_list **cpp, *cp; in appendsecretkey3() local
497 cpp = mapuid2cache(uid, mdp); in appendsecretkey3()
498 if (*cpp == NULL) { in appendsecretkey3()
510 *cpp = cp; in appendsecretkey3()
512 cp = *cpp; in appendsecretkey3()
658 struct cacheuid_list **cpp, *cp; in pk_clear3() local
671 cpp = mapuid2cache(uid, mdp); in pk_clear3()
672 if (*cpp == NULL) { in pk_clear3()
676 cp = (*cpp)->next; in pk_clear3()
677 freedisklist(*cpp); in pk_clear3()
678 *cpp = cp; in pk_clear3()
820 struct cacheuid_list **cpp, *cp; in appendnetname3() local
836 cpp = mapuid2cache(uid, mdp); in appendnetname3()
837 if (*cpp == NULL) { in appendnetname3()
848 *cpp = cp; in appendnetname3()
850 cp = *cpp; in appendnetname3()
1004 add_ref(struct cacheuid_list **cpp) in add_ref() argument
1008 if (cpp == NULL) { in add_ref()
1012 if (cp = *cpp) { in add_ref()
1021 struct cacheuid_list **cpp, *cp; in getcachekey3() local
1034 cpp = mapuid2cache(uid, mdp); in getcachekey3()
1035 cp = *cpp; in getcachekey3()
1036 add_ref(cpp); in getcachekey3()
1038 debug(KEYSERV_DEBUG0, ("getcachekey3 ret %x", *cpp)); in getcachekey3()
1051 struct cacheuid_list **cpp, *cp; in getanycache3() local
1064 cpp = mapuid2cache(uid, mdp); in getanycache3()
1065 if (*cpp == NULL) { in getanycache3()
1069 cp = *cpp; in getanycache3()
1367 struct cachekey3_list **cpp; in map_ps2cache() local
1371 for (cpp = &pdp->common[hash]; in map_ps2cache()
1372 *cpp != NULL && !(cachehit3(public, secret, *cpp)); in map_ps2cache()
1373 cpp = &(*cpp)->next) { in map_ps2cache()
1374 debug(KEYSERV_DEBUG0, ("map_ps2cache %x", cpp)); in map_ps2cache()
1376 debug(KEYSERV_DEBUG, ("map_ps2cache ret %x", cpp)); in map_ps2cache()
1377 return (cpp); in map_ps2cache()
1392 struct cachekey3_list **cpp, *cp, *cachep; in getdeskey3() local
1413 cpp = map_ps2cache(public, secret, pdp); in getdeskey3()
1414 if (*cpp == NULL) { in getdeskey3()
1484 *cpp = cp; in getdeskey3()
1486 cp = *cpp; in getdeskey3()
1905 char **cpp; in init_mechs() local
1948 cpp = cache_options; in init_mechs()
1967 *cpp++ = (*mechpp)->alias; in init_mechs()
1978 *cpp++ = DESALIAS; in init_mechs()
1989 *cpp = NULL; in init_mechs()