/external/boringssl/src/crypto/x509/ |
D | asn1_gen.c | 119 int utype; member 134 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf, 136 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype); 186 if ((asn1_tags.utype == V_ASN1_SEQUENCE) in generate_v3() 187 || (asn1_tags.utype == V_ASN1_SET)) { in generate_v3() 196 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf, depth, perr); in generate_v3() 198 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype); in generate_v3() 307 int utype; in asn1_cb() local 326 utype = asn1_str2tag(elem, len); in asn1_cb() 328 if (utype == -1) { in asn1_cb() [all …]
|
/external/boringssl/src/crypto/asn1/ |
D | tasn_dec.c | 244 if (!(ASN1_tag2bit(otag) & it->utype)) { in asn1_item_ex_d2i() 267 exptag = it->utype; in asn1_item_ex_d2i() 304 | it->utype); in asn1_item_ex_d2i() 735 int ret = 0, utype; in asn1_d2i_ex_primitive() local 748 utype = tag; in asn1_d2i_ex_primitive() 751 utype = it->utype; in asn1_d2i_ex_primitive() 753 if (utype == V_ASN1_ANY) { in asn1_d2i_ex_primitive() 765 ret = asn1_check_tlen(NULL, &utype, &oclass, NULL, NULL, in asn1_d2i_ex_primitive() 772 utype = V_ASN1_OTHER; in asn1_d2i_ex_primitive() 775 tag = utype; in asn1_d2i_ex_primitive() [all …]
|
D | tasn_enc.c | 488 int utype; in asn1_i2d_ex_primitive() local 492 utype = it->utype; in asn1_i2d_ex_primitive() 498 len = asn1_ex_i2c(pval, NULL, &utype, it); in asn1_i2d_ex_primitive() 505 if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) || in asn1_i2d_ex_primitive() 506 (utype == V_ASN1_OTHER)) in asn1_i2d_ex_primitive() 524 tag = utype; in asn1_i2d_ex_primitive() 530 asn1_ex_i2c(pval, *out, &utype, it); in asn1_i2d_ex_primitive() 550 int utype; in asn1_ex_i2c() local 561 || (it->utype != V_ASN1_BOOLEAN)) { in asn1_ex_i2c() 569 utype = strtmp->type; in asn1_ex_i2c() [all …]
|
D | tasn_new.c | 319 int utype; in ASN1_primitive_new() local 331 utype = -1; in ASN1_primitive_new() 333 utype = it->utype; in ASN1_primitive_new() 334 switch (utype) { in ASN1_primitive_new() 357 str = ASN1_STRING_type_new(utype); in ASN1_primitive_new() 370 int utype; in asn1_primitive_clear() local 380 utype = -1; in asn1_primitive_clear() 382 utype = it->utype; in asn1_primitive_clear() 383 if (utype == V_ASN1_BOOLEAN) in asn1_primitive_clear()
|
D | tasn_fre.c | 192 int utype; in ASN1_primitive_free() local 204 utype = typ->type; in ASN1_primitive_free() 209 utype = -1; in ASN1_primitive_free() 213 utype = it->utype; in ASN1_primitive_free() 214 if ((utype != V_ASN1_BOOLEAN) && !*pval) in ASN1_primitive_free() 218 switch (utype) { in ASN1_primitive_free()
|
D | tasn_utl.c | 78 int *sel = offset2ptr(*pval, it->utype); in asn1_get_choice_selector() 86 sel = offset2ptr(*pval, it->utype); in asn1_set_choice_selector()
|
/external/strace/ |
D | msghdr.c | 239 const unsigned int utype = cmsg_type; in print_cmsg_type_data() local 243 if (utype < ARRAY_SIZE(cmsg_socket_printers) in print_cmsg_type_data() 244 && cmsg_socket_printers[utype].printer in print_cmsg_type_data() 245 && data_len >= cmsg_socket_printers[utype].min_len) { in print_cmsg_type_data() 247 cmsg_socket_printers[utype].printer(tcp, cmsg_data, data_len); in print_cmsg_type_data() 252 if (utype < ARRAY_SIZE(cmsg_ip_printers) in print_cmsg_type_data() 253 && cmsg_ip_printers[utype].printer in print_cmsg_type_data() 254 && data_len >= cmsg_ip_printers[utype].min_len) { in print_cmsg_type_data() 256 cmsg_ip_printers[utype].printer(tcp, cmsg_data, data_len); in print_cmsg_type_data()
|
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/ |
D | enum_macros.tmpl | 104 using utype = std::underlying_type<{{enum_name}}>::type; 105 return DefaultHash<utype>::Hash().GetHash(static_cast<utype>(value));
|
/external/boringssl/src/include/openssl/ |
D | asn1t.h | 518 long utype; /* underlying type */ member 619 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, ch… 872 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, …
|
/external/flatbuffers/src/ |
D | reflection.cpp | 655 auto utype = table->GetField<uint8_t>(utype_offset, 0); in VerifyObject() local 656 if (utype != 0) { in VerifyObject() 659 auto child_obj = fb_enum->values()->Get(utype)->object(); in VerifyObject()
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | encode_decode.c | 406 #define SET_HANDLER(utype, ltype) \ in add_handlers_for_repeated_field() argument 407 case utype: \ in add_handlers_for_repeated_field() 526 #define SET_HANDLER(utype, ltype) \ in add_handlers_for_oneof_field() argument 527 case utype: \ in add_handlers_for_oneof_field()
|
D | upb.h | 5484 #define TYPE_METHODS(utype, ltype, ctype, vtype) \ 5491 const Handlers::utype ## Handler& handler) { \ 5524 #define TYPE_METHODS(utype, ctype) \ 5525 inline bool Handlers::Set##utype##Handler(const FieldDef *f, \ 5526 const utype##Handler &h) { \
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.h | 4788 #define TYPE_METHODS(utype, ltype, ctype, vtype) \ 4795 const Handlers::utype ## Handler& handler) { \ 4828 #define TYPE_METHODS(utype, ctype) \ 4829 inline bool Handlers::Set##utype##Handler(const FieldDef *f, \ 4830 const utype##Handler &h) { \
|