Searched defs:it (Results 1 - 25 of 233) sorted by relevance

12345678910

/external/openssl/crypto/dh/
H A Ddh_asn1.c67 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/openssl/crypto/rsa/
H A Drsa_asn1.c66 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/chromium/net/base/
H A Dupload_data.cc14 std::vector<Element>::const_iterator it = elements_.begin(); local
15 for (; it != elements_.end(); ++it)
16 len += (*it).GetContentLength();
27 // the file when we get around to reading it. We should probably find a way
H A Ddata_url.cc35 std::string::const_iterator it = local
39 bool base64_encoded = (it != comma);
50 it = std::search(semi_colon + 1, comma, kCharsetTag,
52 if (it != comma)
53 charset->assign(it + sizeof(kCharsetTag)-1, comma);
69 // bar for text, and it can't hurt, so we allow it.)
74 // could be part of the payload, so don't strip it.
/external/openssl/crypto/asn1/
H A Dnsseq.c65 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dp8_pkey.c65 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dx_pubkey.c11 * apply to all code found in this distribution, be it the RC4, RSA,
72 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
H A Dx_req.c11 * apply to all code found in this distribution, be it the RC4, RSA,
66 * encode the attributes field if it is empty. This is in
67 * violation of PKCS#10 but we need to tolerate it. We do
69 * the callback to initialise it to an empty STACK.
76 * 1. If it is NULL then it's the invalid omission.
77 * 2. If it is empty it is the correct encoding.
78 * 3. If it is not empty then some attributes are present.
82 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
[all...]
H A Dx_x509.c11 * apply to all code found in this distribution, be it the RC4, RSA,
84 static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
176 /* If certificate unreadable then forget it */
H A Dx_crl.c11 * apply to all code found in this distribution, be it the RC4, RSA,
94 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
208 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
H A Da_digest.c11 * apply to all code found in this distribution, be it the RC4, RSA,
98 int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *asn, argument
104 i=ASN1_item_i2d(asn,&str, it);
H A Da_dup.c11 * apply to all code found in this distribution, be it the RC4, RSA,
93 void *ASN1_item_dup(const ASN1_ITEM *it, void *x) argument
102 i=ASN1_item_i2d(x,&b,it);
106 ret=ASN1_item_d2i(NULL,&p,i, it);
H A Da_i2d_fp.c11 * apply to all code found in this distribution, be it the RC4, RSA,
120 int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) argument
131 ret=ASN1_item_i2d_bio(it,b,x);
137 int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x) argument
142 n = ASN1_item_i2d(x, &b, it);
H A Dasn_pack.c152 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_STRING **oct) argument
169 if (!(octmp->length = ASN1_item_i2d(obj, &octmp->data, it))) {
182 void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it) argument
188 if(!(ret = ASN1_item_d2i(NULL, &p, oct->length, it)))
H A Dx_bignum.c65 * BIGNUM directly. Currently it ignores the sign which isn't a problem since all
72 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
95 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
102 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
105 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
127 int utype, char *free_cont, const ASN1_ITEM *it)
126 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
/external/openssl/crypto/dsa/
H A Ddsa_asn1.c66 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
93 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
/external/openssl/crypto/pkcs7/
H A Dpk7_asn1.c81 static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
130 static int si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
173 static int ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
239 * we use SEQUENCE OF and tag it to SET OF
/external/stlport/test/eh/
H A Dtest.cpp8 typename T::const_iterator it; local
10 for(it = coll.begin(); it != coll.end(); ++it) {
11 std::cout << *it << ' '; local
/external/webkit/WebCore/dom/
H A DCheckedRadioButtons.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
76 NameToInputMap::iterator it = m_nameToCheckedRadioButtonMap->find(element->name().impl()); local
77 if (it == m_nameToCheckedRadioButtonMap->end() || it->second != element)
85 m_nameToCheckedRadioButtonMap->remove(it);
/external/webkit/WebCore/platform/text/
H A DTextBoundaries.cpp41 TextBreakIterator* it = wordBreakIterator(chars, len); local
44 position = textBreakFollowing(it, position);
51 position = textBreakFollowing(it, position);
56 position = textBreakPreceding(it, position);
63 position = textBreakPreceding(it, position);
72 TextBreakIterator* it = wordBreakIterator(chars, len); local
73 *end = textBreakFollowing(it, position);
75 *end = textBreakLast(it);
76 *start = textBreakPrevious(it);
/external/webkit/WebCore/storage/chromium/
H A DQuotaTracker.cpp51 HashMap<String, SizeMap>::const_iterator it = m_databaseSizes.find(originIdentifier); local
52 ASSERT(it->second.contains(databaseName));
53 *databaseSize = it->second.get(databaseName);
65 HashMap<String, SizeMap>::iterator it = m_databaseSizes.add(originIdentifier, SizeMap()).first; local
66 it->second.set(databaseName, databaseSize);
/external/webkit/WebCore/svg/
H A DSVGListTraits.h5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
10 This library is distributed in the hope that it will be useful,
40 static bool isNull(ItemPtr* it) { return !it; } argument
46 static bool isNull(const RefPtr<ItemPtr>& it) { return !it; } argument
52 static bool isNull(Item it) { return !it; } argument
/external/wpa_supplicant/wpa_gui/
H A Deventhistory.ui.h25 WpaMsgList::iterator it; local
26 for (it = msgs.begin(); it != msgs.end(); it++) {
27 addEvent(*it);
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Deventhistory.ui.h25 WpaMsgList::iterator it; local
26 for (it = msgs.begin(); it != msgs.end(); it++) {
27 addEvent(*it);
/external/gtest/src/
H A Dgtest-typed-test.cc59 for (DefinedTestIter it = defined_test_names_.begin();
60 it != defined_test_names_.end();
61 ++it) {
62 if (name == *it) {
76 for (DefinedTestIter it = defined_test_names_.begin();
77 it != defined_test_names_.end();
78 ++it) {
79 if (tests.count(*it) == 0) {
80 errors << "You forgot to list test " << *it << ".\n"; local

Completed in 698 milliseconds

12345678910