Home
last modified time | relevance | path

Searched refs:type3 (Results 1 – 16 of 16) sorted by relevance

/freebsd-12.1/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c57 struct ntlm_type3 type3; in test_libntlm_v1() local
64 memset(&type3, 0, sizeof(type3)); in test_libntlm_v1()
110 type3.flags = type2.flags; in test_libntlm_v1()
111 type3.username = rk_UNCONST(user); in test_libntlm_v1()
122 &type3.ntlm); in test_libntlm_v1()
128 &type3.sessionkey); in test_libntlm_v1()
184 struct ntlm_type3 type3; in test_libntlm_v2() local
190 memset(&type3, 0, sizeof(type3)); in test_libntlm_v2()
234 type3.flags = type2.flags; in test_libntlm_v2()
251 &type3.ntlm); in test_libntlm_v2()
[all …]
/freebsd-12.1/crypto/heimdal/lib/gssapi/ntlm/
H A Dinit_sec_context.c324 memset(&type3, 0, sizeof(type3)); in _gss_ntlm_init_sec_context()
351 &type3.lm, in _gss_ntlm_init_sec_context()
352 &type3.ntlm); in _gss_ntlm_init_sec_context()
357 &type3.ntlm); in _gss_ntlm_init_sec_context()
371 if (type3.lm.data) in _gss_ntlm_init_sec_context()
373 if (type3.ntlm.data) in _gss_ntlm_init_sec_context()
384 if (type3.lm.data) in _gss_ntlm_init_sec_context()
386 if (type3.ntlm.data) in _gss_ntlm_init_sec_context()
423 &type3.ntlm); in _gss_ntlm_init_sec_context()
477 if (type3.lm.data) in _gss_ntlm_init_sec_context()
[all …]
H A Dkdc.c347 const struct ntlm_type3 *type3, in kdc_type3() argument
356 ret = krb5_ntlm_req_set_flags(c->context, c->ntlm, type3->flags); in kdc_type3()
358 ret = krb5_ntlm_req_set_username(c->context, c->ntlm, type3->username); in kdc_type3()
361 type3->targetname); in kdc_type3()
364 type3->lm.data, type3->lm.length); in kdc_type3()
367 type3->ntlm.data, type3->ntlm.length); in kdc_type3()
372 if (type3->sessionkey.length) { in kdc_type3()
374 type3->sessionkey.data, in kdc_type3()
375 type3->sessionkey.length); in kdc_type3()
394 if (type3->sessionkey.length) { in kdc_type3()
H A Daccept_sec_context.c178 struct ntlm_type3 type3; in _gss_ntlm_accept_sec_context() local
186 ret = heim_ntlm_decode_type3(&data, 1, &type3); in _gss_ntlm_accept_sec_context()
195 &type3, in _gss_ntlm_accept_sec_context()
198 heim_ntlm_free_type3(&type3); in _gss_ntlm_accept_sec_context()
206 n->user = strdup(type3.username); in _gss_ntlm_accept_sec_context()
207 n->domain = strdup(type3.targetname); in _gss_ntlm_accept_sec_context()
212 heim_ntlm_free_type3(&type3); in _gss_ntlm_accept_sec_context()
220 heim_ntlm_free_type3(&type3); in _gss_ntlm_accept_sec_context()
/freebsd-12.1/crypto/heimdal/lib/ntlm/
H A Dtest_ntlm.c53 struct ntlm_type3 type3; in test_parse() local
109 memset(&type3, 0, sizeof(type3)); in test_parse()
111 type3.flags = flags; in test_parse()
112 type3.username = rk_UNCONST(user); in test_parse()
113 type3.targetname = rk_UNCONST(target); in test_parse()
114 type3.ws = rk_UNCONST("workstation"); in test_parse()
122 &type3.ntlm); in test_parse()
130 free(type3.ntlm.data); in test_parse()
132 memset(&type3, 0, sizeof(type3)); in test_parse()
145 if (strcmp(user, type3.username) != 0) in test_parse()
[all …]
H A Dntlm.c837 struct ntlm_type3 *type3) in heim_ntlm_decode_type3() argument
846 memset(type3, 0, sizeof(*type3)); in heim_ntlm_decode_type3()
885 CHECK(ret_buf(in, &lm, &type3->lm), 0); in heim_ntlm_decode_type3()
897 heim_ntlm_free_type3(type3); in heim_ntlm_decode_type3()
936 if (type3->os[0]) { in heim_ntlm_encode_type3()
940 if (type3->flags & NTLM_NEG_UNICODE) in heim_ntlm_encode_type3()
956 lm.length = type3->lm.length; in heim_ntlm_encode_type3()
957 lm.allocated = type3->lm.length; in heim_ntlm_encode_type3()
960 ntlm.length = type3->ntlm.length; in heim_ntlm_encode_type3()
992 CHECK(put_buf(out, &type3->lm), 0); in heim_ntlm_encode_type3()
[all …]
/freebsd-12.1/contrib/elftoolchain/libelf/
H A Dgelf_mips64el.c52 uint8_t ssym, type3, type2, type; in _libelf_mips64el_r_info_tof() local
55 type3 = r_info >> 16; in _libelf_mips64el_r_info_tof()
60 new_info |= (Elf64_Xword)type3 << 40; in _libelf_mips64el_r_info_tof()
70 uint8_t ssym, type3, type2, type; in _libelf_mips64el_r_info_tom() local
73 type3 = r_info >> 40; in _libelf_mips64el_r_info_tom()
78 new_info |= (Elf64_Xword)type3 << 16; in _libelf_mips64el_r_info_tom()
/freebsd-12.1/crypto/heimdal/kcm/
H A Dprotocol.c1448 memset(&type3, 0, sizeof(type3)); in kcm_op_do_ntlm()
1511 &type3.lm, in kcm_op_do_ntlm()
1512 &type3.ntlm); in kcm_op_do_ntlm()
1517 &type3.ntlm); in kcm_op_do_ntlm()
1528 if (type3.lm.data) in kcm_op_do_ntlm()
1529 free(type3.lm.data); in kcm_op_do_ntlm()
1531 free(type3.ntlm.data); in kcm_op_do_ntlm()
1537 if (type3.lm.data) in kcm_op_do_ntlm()
1538 free(type3.lm.data); in kcm_op_do_ntlm()
1569 type3.username, in kcm_op_do_ntlm()
[all …]
/freebsd-12.1/sys/sys/
H A Dsdt.h137 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) argument
138 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3,\ argument
357 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) \ argument
362 SDT_PROBE_ARGTYPE(sdt, , , name, 3, #type3, NULL); \
365 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, \ argument
371 SDT_PROBE_ARGTYPE(sdt, , , name, 3, #type3, NULL); \
/freebsd-12.1/bin/sh/tests/builtins/
H A DMakefile172 ${PACKAGE}FILES+= type3.0
/freebsd-12.1/contrib/elftoolchain/readelf/
H A Dreadelf.c2978 uint8_t type2, type3; in dump_rel() local
3018 type3 = (type >> 16) & 0xFF; in dump_rel()
3021 type2 = type3 = 0; in dump_rel()
3036 type3)); in dump_rel()
3043 type3)); in dump_rel()
3061 uint8_t type2, type3; in dump_rela() local
3103 type3 = (type >> 16) & 0xFF; in dump_rela()
3106 type2 = type3 = 0; in dump_rela()
3122 type3)); in dump_rela()
3129 type3)); in dump_rela()
/freebsd-12.1/contrib/binutils/binutils/
H A Dreadelf.c908 bfd_vma type3 = 0; in dump_relocations() local
938 type3 = ELF64_MIPS_R_TYPE3 (info); in dump_relocations()
1089 rtype3 = elf_mips_reloc_type (type3); in dump_relocations()
1329 printf (_("unrecognized: %-7lx"), _bfd_int64_low (type3)); in dump_relocations()
1331 printf (_("unrecognized: %-7lx"), type3); in dump_relocations()
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-pip-defs.h5774 uint64_t type3 : 16; /**< VLAN Ethertype */ member
5787 uint64_t type3 : 16;
/freebsd-12.1/contrib/llvm/include/llvm/Target/
H A DTarget.td818 def type3 : TypedOperand<"OPERAND_GENERIC_3">;
/freebsd-12.1/contrib/binutils/bfd/
H A DChangeLog-02036564 * elf64-mips.c (mips_elf64_be_swap_reloca_out): Handle type2 and type3.
/freebsd-12.1/sys/contrib/dev/acpica/
H A Dchanges.txt12671 a type3 opcode and this will require an update to the ACPI specification.