Lines Matching refs:found_cred
3853 kauth_cred_t found_cred, new_cred = NULL; in kauth_cred_create() local
3901 found_cred = kauth_cred_find_and_ref(cred, bucket); in kauth_cred_create()
3903 if (found_cred != NULL) { in kauth_cred_create()
3904 return found_cred; in kauth_cred_create()
4924 kauth_cred_t newcred = NULL, found_cred; in kauth_cred_copy_real() local
4958 found_cred = kauth_cred_find_and_ref(&temp_cred, bucket); in kauth_cred_copy_real()
4961 if (found_cred) { in kauth_cred_copy_real()
4962 return found_cred; in kauth_cred_copy_real()
5088 kauth_cred_t found_cred; in kauth_cred_add() local
5091 found_cred = kauth_cred_find_and_ref(new_cred, bucket); in kauth_cred_add()
5092 if (found_cred) { in kauth_cred_add()
5095 return found_cred; in kauth_cred_add()
5187 kauth_cred_t found_cred = NULL; in kauth_cred_find_and_ref() local
5194 found_cred = kauth_cred_ro(found_cred_rw); in kauth_cred_find_and_ref()
5200 if (!kauth_cred_tryref(found_cred)) { in kauth_cred_find_and_ref()
5201 found_cred = NULL; in kauth_cred_find_and_ref()
5207 return found_cred; in kauth_cred_find_and_ref()
5230 kauth_cred_t found_cred = NULL; in kauth_cred_find() local
5237 found_cred = kauth_cred_require(found_cred_rw->crw_cred); in kauth_cred_find()
5242 return found_cred; in kauth_cred_find()