| /freebsd/crypto/krb5/src/kadmin/server/ |
| H A D | auth.c | 39 struct kadm5_auth_vtable_st vt; member 54 if (h->vt.fini != NULL) in auth_fini() 55 h->vt.fini(context, h->data); in auth_fini() 94 ret = (*mod)(context, 1, 2, (krb5_plugin_vtable)&h->vt); in auth_init() 102 if (h->vt.init != NULL) { in auth_init() 103 ret = h->vt.init(context, acl_file, &h->data); in auth_init() 105 TRACE_KADM5_AUTH_INIT_SKIP(context, h->vt.name); in auth_init() 111 TRACE_KADM5_AUTH_INIT_FAIL(context, h->vt.name, ret); in auth_init() 141 if (opcode == OP_SETSTR && h->vt.setstr != NULL) in call_module() 142 return h->vt.setstr(context, h->data, client, p1, s1, s2); in call_module() [all …]
|
| H A D | auth_self.c | 64 kadm5_auth_vtable vt; in kadm5_auth_self_initvt() local 68 vt = (kadm5_auth_vtable)vtable; in kadm5_auth_self_initvt() 69 vt->name = "self"; in kadm5_auth_self_initvt() 70 vt->cpw = self_compare; in kadm5_auth_self_initvt() 71 vt->chrand = self_compare; in kadm5_auth_self_initvt() 72 vt->purgekeys = self_compare; in kadm5_auth_self_initvt() 73 vt->getprinc = self_compare; in kadm5_auth_self_initvt() 74 vt->getstrs = self_compare; in kadm5_auth_self_initvt() 75 vt->getpol = self_getpol; in kadm5_auth_self_initvt()
|
| H A D | auth_acl.c | 740 kadm5_auth_vtable vt; in kadm5_auth_acl_initvt() local 744 vt = (kadm5_auth_vtable)vtable; in kadm5_auth_acl_initvt() 745 vt->name = "acl"; in kadm5_auth_acl_initvt() 746 vt->init = acl_init; in kadm5_auth_acl_initvt() 747 vt->fini = acl_fini; in kadm5_auth_acl_initvt() 748 vt->addprinc = acl_addprinc; in kadm5_auth_acl_initvt() 749 vt->modprinc = acl_modprinc; in kadm5_auth_acl_initvt() 750 vt->setstr = acl_setstr; in kadm5_auth_acl_initvt() 751 vt->cpw = acl_cpw; in kadm5_auth_acl_initvt() 752 vt->chrand = acl_chrand; in kadm5_auth_acl_initvt() [all …]
|
| /freebsd/crypto/krb5/src/plugins/kadm5_auth/test/ |
| H A D | main.c | 273 kadm5_auth_vtable vt = (kadm5_auth_vtable)vtable; in kadm5_auth_welcomer_initvt() local 275 vt->name = "welcomer"; in kadm5_auth_welcomer_initvt() 276 vt->addprinc = welcomer_addprinc; in kadm5_auth_welcomer_initvt() 277 vt->modprinc = welcomer_modprinc; in kadm5_auth_welcomer_initvt() 278 vt->setstr = welcomer_setstr; in kadm5_auth_welcomer_initvt() 279 vt->delprinc = welcomer_delprinc; in kadm5_auth_welcomer_initvt() 280 vt->renprinc = welcomer_renprinc; in kadm5_auth_welcomer_initvt() 281 vt->getprinc = welcomer_getprinc; in kadm5_auth_welcomer_initvt() 282 vt->addpol = welcomer_addpol; in kadm5_auth_welcomer_initvt() 283 vt->modpol = welcomer_modpol; in kadm5_auth_welcomer_initvt() [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/os/ |
| H A D | localauth.c | 38 struct krb5_localauth_vtable_st vt; member 59 if (h->vt.fini != NULL) in free_handles() 60 h->vt.fini(context, h->data); in free_handles() 75 for (tp = h->vt.an2ln_types; tp != NULL && *tp != NULL; tp++) { in find_typed_module() 92 for (tp = handle->vt.an2ln_types; tp != NULL && *tp != NULL; tp++) { in check_conflict() 95 TRACE_LOCALAUTH_INIT_CONFLICT(context, *tp, handle->vt.name, in check_conflict() 96 conflict->vt.name); in check_conflict() 168 ret = (*mod)(context, 1, 1, (krb5_plugin_vtable)&handle->vt); in load_localauth_modules() 179 if (handle->vt.init != NULL) { in load_localauth_modules() 180 ret = handle->vt.init(context, &handle->data); in load_localauth_modules() [all …]
|
| H A D | hostrealm_dns.c | 122 krb5_hostrealm_vtable vt = (krb5_hostrealm_vtable)vtable; in hostrealm_dns_initvt() local 124 vt->name = "dns"; in hostrealm_dns_initvt() 125 vt->fallback_realm = dns_fallback_realm; in hostrealm_dns_initvt() 126 vt->default_realm = dns_default_realm; in hostrealm_dns_initvt() 127 vt->free_list = dns_free_realmlist; in hostrealm_dns_initvt() 137 krb5_hostrealm_vtable vt = (krb5_hostrealm_vtable)vtable; in hostrealm_dns_initvt() local 139 vt->name = "dns"; in hostrealm_dns_initvt()
|
| /freebsd/crypto/krb5/src/plugins/certauth/test/ |
| H A D | main.c | 230 krb5_certauth_vtable vt; in certauth_test1_initvt() local 234 vt = (krb5_certauth_vtable)vtable; in certauth_test1_initvt() 235 vt->name = "test1"; in certauth_test1_initvt() 236 vt->authorize = test1_authorize; in certauth_test1_initvt() 237 vt->free_ind = test_free_ind; in certauth_test1_initvt() 248 krb5_certauth_vtable vt; in certauth_test2_initvt() local 252 vt = (krb5_certauth_vtable)vtable; in certauth_test2_initvt() 253 vt->name = "test2"; in certauth_test2_initvt() 254 vt->authorize = test2_authorize; in certauth_test2_initvt() 255 vt->init = test2_init; in certauth_test2_initvt() [all …]
|
| /freebsd/crypto/krb5/src/plugins/hostrealm/test/ |
| H A D | main.c | 170 krb5_hostrealm_vtable vt; in hostrealm_test1_initvt() local 174 vt = (krb5_hostrealm_vtable)vtable; in hostrealm_test1_initvt() 175 vt->name = "test1"; in hostrealm_test1_initvt() 176 vt->host_realm = split_comps; in hostrealm_test1_initvt() 177 vt->fallback_realm = split_comps; in hostrealm_test1_initvt() 178 vt->default_realm = multi_defrealm; in hostrealm_test1_initvt() 179 vt->free_list = free_realmlist; in hostrealm_test1_initvt() 187 krb5_hostrealm_vtable vt; in hostrealm_test2_initvt() local 191 vt = (krb5_hostrealm_vtable)vtable; in hostrealm_test2_initvt() 192 vt->name = "test2"; in hostrealm_test2_initvt() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoZa.td | 71 multiclass AMOCASPat<string AtomicOp, string BaseInst, ValueType vt = XLenVT, 74 def : Pat<(!cast<PatFrag>(AtomicOp#"_monotonic") (vt GPR:$addr), 75 (vt GPR:$cmp), 76 (vt GPR:$new)), 78 def : Pat<(!cast<PatFrag>(AtomicOp#"_acquire") (vt GPR:$addr), 79 (vt GPR:$cmp), 80 (vt GPR:$new)), 82 def : Pat<(!cast<PatFrag>(AtomicOp#"_release") (vt GPR:$addr), 83 (vt GPR:$cmp), 84 (vt GPR:$new)), [all …]
|
| /freebsd/crypto/krb5/src/kdc/ |
| H A D | kdc_audit.c | 41 struct krb5_audit_vtable_st vt; member 58 if (hdl->vt.close != NULL) in free_handles() 59 hdl->vt.close(hdl->auctx); in free_handles() 98 ret = (*mod)(context, 1, 1, (krb5_plugin_vtable)&hdl->vt); in load_audit_modules() 105 vtable = hdl->vt; in load_audit_modules() 238 if (hdl->vt.kdc_stop != NULL) in kau_kdc_stop() 239 hdl->vt.kdc_stop(hdl->auctx, ev_success); in kau_kdc_stop() 253 if (hdl->vt.kdc_start != NULL) in kau_kdc_start() 254 hdl->vt.kdc_start(hdl->auctx, ev_success); in kau_kdc_start() 270 if (hdl->vt.as_req != NULL) in kau_as_req() [all …]
|
| H A D | policy.c | 42 struct krb5_kdcpolicy_vtable_st vt; member 122 if (h->vt.check_as == NULL) in check_kdcpolicy_as() 125 ret = h->vt.check_as(context, h->moddata, request, client, server, in check_kdcpolicy_as() 162 if (h->vt.check_tgs == NULL) in check_kdcpolicy_tgs() 165 ret = h->vt.check_tgs(context, h->moddata, request, server, ticket, in check_kdcpolicy_tgs() 185 if (h->vt.fini != NULL) in unload_kdcpolicy_plugins() 186 h->vt.fini(context, h->moddata); in unload_kdcpolicy_plugins() 216 ret = (*mod)(context, 1, 1, (krb5_plugin_vtable)&h->vt); in load_kdcpolicy_plugins() 222 if (h->vt.init != NULL) { in load_kdcpolicy_plugins() 223 ret = h->vt.init(context, &h->moddata); in load_kdcpolicy_plugins() [all …]
|
| /freebsd/crypto/krb5/src/plugins/localauth/test/ |
| H A D | main.c | 146 krb5_localauth_vtable vt = (krb5_localauth_vtable)vtable; in localauth_test1_initvt() local 148 vt->init = init_test; in localauth_test1_initvt() 149 vt->fini = fini_test; in localauth_test1_initvt() 150 vt->name = "test1"; in localauth_test1_initvt() 151 vt->an2ln = an2ln_test; in localauth_test1_initvt() 152 vt->userok = userok_test; in localauth_test1_initvt() 153 vt->free_string = freestr; in localauth_test1_initvt() 161 krb5_localauth_vtable vt = (krb5_localauth_vtable)vtable; in localauth_test2_initvt() local 164 vt->name = "test2"; in localauth_test2_initvt() 165 vt->an2ln_types = types; in localauth_test2_initvt() [all …]
|
| /freebsd/contrib/wpa/src/drivers/ |
| H A D | ndis_events.c | 243 VARIANT vt; in ndis_events_media_specific() local 254 0, &vt, NULL, NULL); in ndis_events_media_specific() 262 SafeArrayGetLBound(V_ARRAY(&vt), 1, &lower); in ndis_events_media_specific() 263 SafeArrayGetUBound(V_ARRAY(&vt), 1, &upper); in ndis_events_media_specific() 269 VariantClear(&vt); in ndis_events_media_specific() 275 SafeArrayGetElement(V_ARRAY(&vt), &k, &ch); in ndis_events_media_specific() 280 VariantClear(&vt); in ndis_events_media_specific() 320 VARIANT vtClass, vt; in ndis_events_indicate() local 331 hr = IWbemClassObject_Get(pObj, L"InstanceName", 0, &vt, NULL, in ndis_events_indicate() 348 if (wcscmp(events->adapter_desc, vt.bstrVal) != 0) { in ndis_events_indicate() [all …]
|
| /freebsd/crypto/krb5/src/plugins/audit/test/ |
| H A D | au_test.c | 208 krb5_audit_vtable vt; in audit_test_initvt() local 213 vt = (krb5_audit_vtable)vtable; in audit_test_initvt() 214 vt->name = "test"; in audit_test_initvt() 216 vt->open = open_au; in audit_test_initvt() 217 vt->close = close_au; in audit_test_initvt() 218 vt->kdc_start = j_kdc_start; in audit_test_initvt() 219 vt->kdc_stop = j_kdc_stop; in audit_test_initvt() 220 vt->as_req = j_as_req; in audit_test_initvt() 221 vt->tgs_req = j_tgs_req; in audit_test_initvt() 222 vt->tgs_s4u2self = j_tgs_s4u2self; in audit_test_initvt() [all …]
|
| /freebsd/contrib/netbsd-tests/fs/puffs/h_dtfs/ |
| H A D | dtfs_vfsops.c | 44 rtstr(struct puffs_usermount *pu, const char *str, enum vtype vt) in rtstr() argument 54 dtfs_baseattrs(va, vt, 2); in rtstr() 60 puffs_setrootinfo(pu, vt, 0, 0); in rtstr() 66 rtdev(struct puffs_usermount *pu, const char *str, enum vtype vt) in rtdev() argument 75 dtfs_baseattrs(va, vt, 2); in rtdev() 79 if (vt == VBLK) in rtdev() 84 puffs_setrootinfo(pu, vt, 0, va->va_rdev); in rtdev() 90 rtnorm(struct puffs_usermount *pu, const char *str, enum vtype vt) in rtnorm() argument 95 dtfs_baseattrs(va, vt, 2); in rtnorm() 96 if (vt == VDIR) in rtnorm() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | FLATInstructions.td | 528 ValueType vt, 529 ValueType data_vt = vt, 545 ValueType vt, 546 ValueType data_vt = vt, 562 ValueType vt, 563 ValueType data_vt = vt, 566 defm "" : FLAT_Atomic_Pseudo_NO_RTN<opName, vdst_rc, vt, data_vt, data_rc, data_op>; 567 defm "" : FLAT_Atomic_Pseudo_RTN<opName, vdst_rc, vt, data_vt, data_rc, data_op>; 573 ValueType vt, 574 ValueType data_vt = vt, [all …]
|
| H A D | DSInstructions.td | 429 class DSAtomicRetPat<DS_Pseudo inst, ValueType vt, PatFrag frag, int complexity = 0, 430 bit gds=0> : GCNPat <(frag (DS1Addr1Offset i32:$ptr, i32:$offset), vt:$value), 431 (inst $ptr, getVregSrcForVT<vt>.ret:$value, Offset:$offset, (i1 gds))> { 737 ValueType vt, string frag> { 738 def : DSAtomicRetPat<inst, vt, 742 def : DSAtomicRetPat<noRetInst, vt, 758 class DSReadPat <DS_Pseudo inst, ValueType vt, PatFrag frag, int gds=0> : GCNPat < 759 (vt (frag (DS1Addr1Offset i32:$ptr, i32:$offset))), 763 multiclass DSReadPat_mc<DS_Pseudo inst, ValueType vt, string frag> { 766 def : DSReadPat<inst, vt, !cast<PatFrag>(frag#"_m0")>; [all …]
|
| H A D | BUFInstructions.td | 423 class getMUBUFElements<ValueType vt> { 425 !if(!eq(vt, f16), 1, 426 !if(!eq(vt, v2f16), 2, 427 !if(!eq(vt, v3f16), 3, 428 !if(!eq(vt, v4f16), 4, 429 !if(!eq(vt.Size, 32), 1, 430 !if(!eq(vt.Size, 64), 2, 431 !if(!eq(vt.Size, 96), 3, 432 !if(!eq(vt.Size, 128), 4, 0) 994 foreach vt = Reg32Types.types in { [all …]
|
| /freebsd/crypto/krb5/src/plugins/audit/simple/ |
| H A D | au_simple_main.c | 246 krb5_audit_vtable vt; in audit_simple_initvt() local 251 vt = (krb5_audit_vtable)vtable; in audit_simple_initvt() 252 vt->name = "simple"; in audit_simple_initvt() 253 vt->open = open_au; in audit_simple_initvt() 254 vt->close = close_au; in audit_simple_initvt() 255 vt->kdc_start = j_kdc_start; in audit_simple_initvt() 256 vt->kdc_stop = j_kdc_stop; in audit_simple_initvt() 257 vt->as_req = j_as_req; in audit_simple_initvt() 258 vt->tgs_req = j_tgs_req; in audit_simple_initvt() 259 vt->tgs_s4u2self = j_tgs_s4u2self; in audit_simple_initvt() [all …]
|
| /freebsd/crypto/krb5/src/util/profile/ |
| H A D | prof_init.c | 49 profile->vt = vt_copy; in init_module() 254 if (profile->vt->copy) { in copy_vtable_profile() 256 err = profile->vt->copy(profile->cbdata, &cbdata); in copy_vtable_profile() 259 err = init_module(profile->vt, cbdata, profile->lib_handle, in copy_vtable_profile() 261 if (err && profile->vt->cleanup) in copy_vtable_profile() 262 profile->vt->cleanup(cbdata); in copy_vtable_profile() 265 err = init_module(profile->vt, profile->cbdata, profile->lib_handle, in copy_vtable_profile() 301 if (old_profile->vt) in profile_copy() 388 if (profile->vt) { in profile_is_writable() 389 if (profile->vt->writable) in profile_is_writable() [all …]
|
| H A D | prof_set.c | 85 if (profile->vt) { in profile_update_relation() 86 if (!profile->vt->update_relation) in profile_update_relation() 88 return profile->vt->update_relation(profile->cbdata, names, old_value, in profile_update_relation() 142 if (profile->vt) { in profile_clear_relation() 143 if (!profile->vt->update_relation) in profile_clear_relation() 145 return profile->vt->update_relation(profile->cbdata, names, NULL, in profile_clear_relation() 195 if (profile->vt) { in profile_rename_section() 196 if (!profile->vt->rename_section) in profile_rename_section() 198 return profile->vt->rename_section(profile->cbdata, names, new_name); in profile_rename_section() 252 if (profile->vt) { in profile_add_relation() [all …]
|
| /freebsd/crypto/krb5/src/lib/kadm5/srv/ |
| H A D | pwqual.c | 37 struct krb5_pwqual_vtable_st vt; member 69 ret = (*mod)(context, 1, 1, (krb5_plugin_vtable)&handle->vt); in k5_pwqual_load() 76 if (handle->vt.open != NULL) { in k5_pwqual_load() 77 ret = handle->vt.open(context, dict_file, &handle->data); in k5_pwqual_load() 107 if (handle->vt.close != NULL) in k5_pwqual_free_handles() 108 handle->vt.close(context, handle->data); in k5_pwqual_free_handles() 117 return handle->vt.name; in k5_pwqual_name() 125 return handle->vt.check(context, handle->data, password, policy_name, in k5_pwqual_check()
|
| /freebsd/crypto/krb5/src/lib/krb5/ccache/ |
| H A D | ccselect.c | 33 struct krb5_ccselect_vtable_st vt; member 47 if (h->vt.fini) in free_handles() 48 h->vt.fini(context, h->data); in free_handles() 95 ret = (*mod)(context, 1, 1, (krb5_plugin_vtable)&handle->vt); in load_modules() 102 ret = handle->vt.init(context, &handle->data, &handle->priority); in load_modules() 104 TRACE_CCSELECT_INIT_FAIL(context, handle->vt.name, ret); in load_modules() 172 ret = h->vt.choose(context, h->data, server, &cache, &princ); in krb5_cc_select() 174 TRACE_CCSELECT_MODCHOICE(context, h->vt.name, server, cache, in krb5_cc_select() 180 TRACE_CCSELECT_MODNOTFOUND(context, h->vt.name, server, princ); in krb5_cc_select() 184 TRACE_CCSELECT_MODFAIL(context, h->vt.name, ret, server); in krb5_cc_select()
|
| /freebsd/crypto/krb5/src/plugins/preauth/test/ |
| H A D | cltest.c | 238 krb5_clpreauth_vtable vt; in clpreauth_test_initvt() local 242 vt = (krb5_clpreauth_vtable)vtable; in clpreauth_test_initvt() 243 vt->name = "test"; in clpreauth_test_initvt() 244 vt->pa_type_list = pa_types; in clpreauth_test_initvt() 245 vt->init = test_init; in clpreauth_test_initvt() 246 vt->fini = test_fini; in clpreauth_test_initvt() 247 vt->request_init = test_request_init; in clpreauth_test_initvt() 248 vt->request_fini = test_request_fini; in clpreauth_test_initvt() 249 vt->process = test_process; in clpreauth_test_initvt() 250 vt->tryagain = test_tryagain; in clpreauth_test_initvt() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyInstrSIMD.td | 69 ValueType vt; 82 let vt = v16i8; 83 let int_vt = vt; 94 let vt = v8i16; 95 let int_vt = vt; 107 let vt = v4i32; 108 let int_vt = vt; 120 let vt = v2i64; 121 let int_vt = vt; 133 let vt = v4f32; [all …]
|