• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/MITKerberosShim-66/

Lines Matching defs:ioOptions

62 krb5_get_init_creds_opt *__KLLoginOptionsGetKerberos5Options (KLLoginOptions ioOptions);
63 KLTime __KLLoginOptionsGetStartTime (KLLoginOptions ioOptions);
64 char *__KLLoginOptionsGetServiceName (KLLoginOptions ioOptions);
1071 KLStatus KLLoginOptionsSetTicketLifetime (KLLoginOptions ioOptions,
1075 heim_krb5_get_init_creds_opt_set_tkt_life(ioOptions->opt, inTicketLifetime);
1080 KLStatus KLLoginOptionsSetForwardable (KLLoginOptions ioOptions,
1084 heim_krb5_get_init_creds_opt_set_forwardable(ioOptions->opt, inForwardable);
1089 KLStatus KLLoginOptionsSetProxiable (KLLoginOptions ioOptions,
1093 heim_krb5_get_init_creds_opt_set_proxiable(ioOptions->opt, inProxiable);
1098 KLStatus KLLoginOptionsSetRenewableLifetime (KLLoginOptions ioOptions,
1102 heim_krb5_get_init_creds_opt_set_renew_life(ioOptions->opt, inRenewableLifetime);
1108 KLLoginOptionsSetAddressless (KLLoginOptions ioOptions,
1117 KLLoginOptionsSetTicketStartTime (KLLoginOptions ioOptions,
1126 KLLoginOptionsSetServiceName(KLLoginOptions ioOptions,
1130 if (ioOptions->service)
1131 free(ioOptions->service);
1132 ioOptions->service = strdup(inServiceName);
1137 KLStatus KLDisposeLoginOptions(KLLoginOptions ioOptions)
1140 heim_krb5_get_init_creds_opt_free(milcontext, ioOptions->opt);
1141 if (ioOptions->service)
1142 free(ioOptions->service);
1143 free(ioOptions);
1273 __KLLoginOptionsGetKerberos5Options (KLLoginOptions ioOptions)
1278 KLTime __KLLoginOptionsGetStartTime (KLLoginOptions ioOptions)
1283 char *__KLLoginOptionsGetServiceName (KLLoginOptions ioOptions)