Home
last modified time | relevance | path

Searched refs:os1 (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
Dexample.c80 ASN1_OCTET_STRING *os1,*os2; in add_signed_seq2string() local
89 os1=ASN1_OCTET_STRING_new(); in add_signed_seq2string()
91 ASN1_OCTET_STRING_set(os1,(unsigned char*)str1,strlen(str1)); in add_signed_seq2string()
93 i =i2d_ASN1_OCTET_STRING(os1,NULL); in add_signed_seq2string()
100 i2d_ASN1_OCTET_STRING(os1,&p); in add_signed_seq2string()
106 ASN1_OCTET_STRING_free(os1); in add_signed_seq2string()
129 ASN1_OCTET_STRING *os1,*os2; in get_signed_seq2string() local
138 if ((os1=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL) in get_signed_seq2string()
148 *str1=malloc(os1->length+1); in get_signed_seq2string()
150 memcpy(*str1,os1->data,os1->length); in get_signed_seq2string()
[all …]
/external/openssl/crypto/pkcs7/
Dexample.c80 ASN1_OCTET_STRING *os1,*os2; in add_signed_seq2string() local
89 os1=ASN1_OCTET_STRING_new(); in add_signed_seq2string()
91 ASN1_OCTET_STRING_set(os1,(unsigned char*)str1,strlen(str1)); in add_signed_seq2string()
93 i =i2d_ASN1_OCTET_STRING(os1,NULL); in add_signed_seq2string()
100 i2d_ASN1_OCTET_STRING(os1,&p); in add_signed_seq2string()
106 ASN1_OCTET_STRING_free(os1); in add_signed_seq2string()
129 ASN1_OCTET_STRING *os1,*os2; in get_signed_seq2string() local
138 if ((os1=d2i_ASN1_OCTET_STRING(NULL,&c.p,c.slen)) == NULL) in get_signed_seq2string()
148 *str1=malloc(os1->length+1); in get_signed_seq2string()
150 memcpy(*str1,os1->data,os1->length); in get_signed_seq2string()
[all …]
/external/openssl/crypto/rsa/
Drsa_ameth.c582 ASN1_STRING *os1 = NULL, *os2 = NULL; in rsa_item_sign() local
633 if (!ASN1_item_pack(pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), &os1)) in rsa_item_sign()
637 os2 = ASN1_STRING_dup(os1); in rsa_item_sign()
644 V_ASN1_SEQUENCE, os1); in rsa_item_sign()
645 os1 = os2 = NULL; in rsa_item_sign()
652 if (os1) in rsa_item_sign()
653 ASN1_STRING_free(os1); in rsa_item_sign()
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/
Drsa_ameth.c582 ASN1_STRING *os1 = NULL, *os2 = NULL; in rsa_item_sign() local
633 if (!ASN1_item_pack(pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), &os1)) in rsa_item_sign()
637 os2 = ASN1_STRING_dup(os1); in rsa_item_sign()
644 V_ASN1_SEQUENCE, os1); in rsa_item_sign()
645 os1 = os2 = NULL; in rsa_item_sign()
652 if (os1) in rsa_item_sign()
653 ASN1_STRING_free(os1); in rsa_item_sign()
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckSecuritySyntaxOnly.cpp608 llvm::raw_svector_ostream os1(buf1); in checkCall_rand() local
609 os1 << '\'' << *FD << "' is a poor random number generator"; in checkCall_rand()
620 BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(), in checkCall_rand()
726 llvm::raw_svector_ostream os1(buf1); in checkUncheckedReturnValue() local
727 os1 << "Return value is not checked in call to '" << *FD << '\''; in checkUncheckedReturnValue()
738 BR.EmitBasicReport(AC->getDecl(), os1.str(), "Security", os2.str(), in checkUncheckedReturnValue()
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dsection.c1114 yasm_offset_setter *os1, *os2; in optimize_cleanup() local
1125 os1 = STAILQ_FIRST(&optd->offset_setters); in optimize_cleanup()
1126 while (os1) { in optimize_cleanup()
1127 os2 = STAILQ_NEXT(os1, link); in optimize_cleanup()
1128 yasm_xfree(os1); in optimize_cleanup()
1129 os1 = os2; in optimize_cleanup()
/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp96 raw_string_ostream os1(o1), os2(o2); in PrintResults() local
97 WriteAsOperand(os1, V1, true, M); in PrintResults()