HomeSort by relevance Sort by last modified time
    Searched defs:utype (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
tasn_fre.c 204 int utype; local
219 utype = typ->type;
226 utype = -1;
232 utype = it->utype;
233 if ((utype != V_ASN1_BOOLEAN) && !*pval)
237 switch(utype)
tasn_new.c 327 int utype; local
337 utype = -1;
339 utype = it->utype;
340 switch(utype)
364 str = ASN1_STRING_type_new(utype);
377 int utype; local
388 utype = -1;
390 utype = it->utype;
    [all...]
tasn_enc.c 510 int utype; local
514 utype = it->utype;
520 len = asn1_ex_i2c(pval, NULL, &utype, it);
526 * utype.
528 if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) ||
529 (utype == V_ASN1_OTHER))
546 if (tag == -1) tag = utype;
553 asn1_ex_i2c(pval, *out, &utype, it)
573 int utype; local
    [all...]
tasn_prn.c 536 long utype; local
548 utype = str->type & ~V_ASN1_NEG;
550 utype = it->utype;
551 if (utype == V_ASN1_ANY)
554 utype = atype->type;
560 pname = ASN1_tag2str(utype);
565 pname = ASN1_tag2str(utype);
570 if (utype == V_ASN1_NULL)
585 switch (utype)
    [all...]
tasn_dec.c 218 if (!(ASN1_tag2bit(otag) & it->utype))
245 exptag = it->utype;
286 | it->utype);
741 int ret = 0, utype; local
756 utype = tag;
760 utype = it->utype;
762 if (utype == V_ASN1_ANY)
777 ret = asn1_check_tlen(NULL, &utype, &oclass, NULL, NULL,
785 utype = V_ASN1_OTHER
    [all...]
  /external/openssl/crypto/asn1/
tasn_fre.c 206 int utype; local
221 utype = typ->type;
228 utype = -1;
234 utype = it->utype;
235 if ((utype != V_ASN1_BOOLEAN) && !*pval)
239 switch(utype)
tasn_new.c 329 int utype; local
339 utype = -1;
341 utype = it->utype;
342 switch(utype)
366 str = ASN1_STRING_type_new(utype);
379 int utype; local
390 utype = -1;
392 utype = it->utype;
    [all...]
tasn_enc.c 513 int utype; local
517 utype = it->utype;
523 len = asn1_ex_i2c(pval, NULL, &utype, it);
529 * utype.
531 if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) ||
532 (utype == V_ASN1_OTHER))
549 if (tag == -1) tag = utype;
556 asn1_ex_i2c(pval, *out, &utype, it)
576 int utype; local
    [all...]
tasn_prn.c 524 long utype; local
536 utype = str->type & ~V_ASN1_NEG;
538 utype = it->utype;
539 if (utype == V_ASN1_ANY)
542 utype = atype->type;
548 pname = ASN1_tag2str(utype);
553 pname = ASN1_tag2str(utype);
558 if (utype == V_ASN1_NULL)
573 switch (utype)
    [all...]
asn1_gen.c 109 int utype; member in struct:__anon32759
120 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
121 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype);
159 if ((asn1_tags.utype == V_ASN1_SEQUENCE) || (asn1_tags.utype == V_ASN1_SET))
166 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf);
169 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype);
281 int utype; local
299 utype = asn1_str2tag(elem, len);
301 if (utype == -1
    [all...]
tasn_dec.c 224 if (!(ASN1_tag2bit(otag) & it->utype))
252 exptag = it->utype;
295 | it->utype);
771 int ret = 0, utype; local
786 utype = tag;
790 utype = it->utype;
792 if (utype == V_ASN1_ANY)
809 ret = asn1_check_tlen(NULL, &utype, &oclass, NULL, NULL,
818 utype = V_ASN1_OTHER
    [all...]
asn1t.h 570 long utype; /* underlying type */ member in struct:ASN1_ITEM_st
614 * structure. In this case the 'utype' field
671 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
941 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
asn1_gen.c 112 int utype; member in struct:__anon16279
123 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
124 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype);
162 if ((asn1_tags.utype == V_ASN1_SEQUENCE) || (asn1_tags.utype == V_ASN1_SET))
169 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf);
172 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype);
284 int utype; local
302 utype = asn1_str2tag(elem, len);
304 if (utype == -1
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
lexical_cast.hpp 1650 typedef BOOST_DEDUCED_TYPENAME make_unsigned<Type>::type utype; typedef
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
asn1t.h 517 long utype; /* underlying type */ member in struct:ASN1_ITEM_st
561 * structure. In this case the 'utype' field
618 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
888 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
  /external/openssl/include/openssl/
asn1t.h 570 long utype; /* underlying type */ member in struct:ASN1_ITEM_st
614 * structure. In this case the 'utype' field
671 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
941 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);

Completed in 1382 milliseconds