Home
last modified time | relevance | path

Searched refs:cred2 (Results 1 – 7 of 7) sorted by relevance

/trueos/crypto/heimdal/lib/gssapi/
HDtest_kcred.c56 gss_cred_id_t cred1, cred2; in copy_import() local
90 maj_stat = gss_krb5_import_cred(&min_stat, id, NULL, NULL, &cred2); in copy_import()
94 maj_stat = gss_inquire_cred(&min_stat, cred2, &name2, &lifetime2, in copy_import()
118 maj_stat = gss_inquire_cred(&min_stat, cred2, &name2, &lifetime2, in copy_import()
134 gss_release_cred(&min_stat, &cred2); in copy_import()
HDtest_cred.c115 gss_cred_id_t cred, cred2, cred3; in acquire_add_release_add() local
134 &cred2, in acquire_add_release_add()
147 cred2, in acquire_add_release_add()
158 maj_stat = gss_release_cred(&min_stat, &cred2); in acquire_add_release_add()
HDtest_context.c895 gss_cred_id_t cred2 = GSS_C_NO_CREDENTIAL; in main() local
901 loop(actual_mech, nameoid, argv[0], deleg_cred, &sctx, &cctx, &actual_mech2, &cred2); in main()
906 gss_release_cred(&min_stat, &cred2); in main()
912 &actual_mech2, &cred2); in main()
917 gss_release_cred(&min_stat, &cred2); in main()
927 maj_stat = gss_import_cred(&min_stat, &cb, &cred2); in main()
938 loop(actual_mech, nameoid, argv[0], cred2, &sctx, &cctx, in main()
949 loop(GSS_SPNEGO_MECHANISM, nameoid, argv[0], cred2, &sctx, &cctx, in main()
957 gss_release_cred(&min_stat, &cred2); in main()
/trueos/tools/regression/security/proc_to_proc/
HDREADME14 ptrace cred1 attempts ptrace attach to cred2
15 sighup cred1 attempts SIGHUP of cred2
16 sigsegv cred1 attempts SIGSEGV of cred2
17 see cred1 attempts getpriority() on cred2
18 sched cred1 attempts setpriority() on cred2
/trueos/contrib/wpa/wpa_supplicant/
HDinterworking.c1446 struct wpa_cred *cred, *cred2; in interworking_credentials_available() local
1449 cred2 = interworking_credentials_available_3gpp(wpa_s, bss); in interworking_credentials_available()
1450 if (cred && cred2 && cred2->priority >= cred->priority) in interworking_credentials_available()
1451 cred = cred2; in interworking_credentials_available()
1453 cred = cred2; in interworking_credentials_available()
1455 cred2 = interworking_credentials_available_roaming_consortium(wpa_s, in interworking_credentials_available()
1457 if (cred && cred2 && cred2->priority >= cred->priority) in interworking_credentials_available()
1458 cred = cred2; in interworking_credentials_available()
1460 cred = cred2; in interworking_credentials_available()
/trueos/sys/sys/
HDjail.h372 int prison_check(struct ucred *cred1, struct ucred *cred2);
/trueos/sys/kern/
HDkern_jail.c3504 prison_check(struct ucred *cred1, struct ucred *cred2) in prison_check() argument
3507 return ((cred1->cr_prison == cred2->cr_prison || in prison_check()
3508 prison_ischild(cred1->cr_prison, cred2->cr_prison)) ? 0 : ESRCH); in prison_check()