/external/openssl/crypto/pkcs12/ |
p12_add.c | 68 PKCS12_BAGS *bag; local 70 if (!(bag = PKCS12_BAGS_new())) { 74 bag->type = OBJ_nid2obj(nid1); 75 if (!ASN1_item_pack(obj, it, &bag->value.octet)) { 83 safebag->value.bag = bag; 92 PKCS12_SAFEBAG *bag; local 93 if (!(bag = PKCS12_SAFEBAG_new())) { 97 bag->type = OBJ_nid2obj(NID_keyBag); 98 bag->value.keybag = p8 108 PKCS12_SAFEBAG *bag; local [all...] |
p12_crt.c | 64 static int pkcs12_add_bag(STACK_OF(PKCS12_SAFEBAG) **pbags, PKCS12_SAFEBAG *bag); 66 static int copy_bag_attr(PKCS12_SAFEBAG *bag, EVP_PKEY *pkey, int nid) 74 if (!X509at_add1_attr(&bag->attrib, attr)) 86 PKCS12_SAFEBAG *bag = NULL; local 116 bag = PKCS12_add_cert(&bags, cert); 117 if(name && !PKCS12_add_friendlyname(bag, name, -1)) 119 if(keyidlen && !PKCS12_add_localkeyid(bag, keyid, keyidlen)) 138 bag = PKCS12_add_key(&bags, pkey, keytype, iter, nid_key, pass); 140 if (!bag) 143 if (!copy_bag_attr(bag, pkey, NID_ms_csp_name) 189 PKCS12_SAFEBAG *bag = NULL; local 232 PKCS12_SAFEBAG *bag = NULL; local [all...] |
pkcs12.h | 114 struct pkcs12_bag_st *bag; /* secret, crl and certbag */ member in union:__anon8850::__anon8851 116 X509_SIG *shkeybag; /* shrouded key bag */ 134 ASN1_TYPE *other; /* Secret or other bag */ 158 #define M_PKCS12_cert_bag_type(bg) OBJ_obj2nid((bg)->value.bag->type) 161 #define PKCS12_get_attr(bag, attr_nid) \ 162 PKCS12_get_attr_gen(bag->attrib, attr_nid) 172 X509 *PKCS12_certbag2x509(PKCS12_SAFEBAG *bag); 173 X509_CRL *PKCS12_certbag2x509crl(PKCS12_SAFEBAG *bag); 179 PKCS8_PRIV_KEY_INFO *PKCS12_decrypt_skey(PKCS12_SAFEBAG *bag, const char *pass, 199 int PKCS12_add_localkeyid(PKCS12_SAFEBAG *bag, unsigned char *name, int namelen) [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/ |
split_fn_imps.hpp | 48 split_join_branch_bag bag; local 49 leaf_pointer p_split_lf = split_prep(r_key, other, bag); 52 _GLIBCXX_DEBUG_ASSERT(bag.empty()); 58 _GLIBCXX_DEBUG_ASSERT(!bag.empty()); 64 bag);
|
insert_join_fn_imps.hpp | 48 split_join_branch_bag bag; local 49 if (!join_prep(other, bag)) 57 other.m_p_head->m_p_parent, 0, bag); 397 split_join_branch_bag bag; local 398 bag.add_branch(); 399 m_p_head->m_p_parent = rec_join(m_p_head->m_p_parent, p_new_lf, 0, bag);
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/ |
split_fn_imps.hpp | 48 split_join_branch_bag bag; local 49 leaf_pointer p_split_lf = split_prep(r_key, other, bag); 52 _GLIBCXX_DEBUG_ASSERT(bag.empty()); 58 _GLIBCXX_DEBUG_ASSERT(!bag.empty()); 64 bag);
|
insert_join_fn_imps.hpp | 48 split_join_branch_bag bag; local 49 if (!join_prep(other, bag)) 57 other.m_p_head->m_p_parent, 0, bag); 397 split_join_branch_bag bag; local 398 bag.add_branch(); 399 m_p_head->m_p_parent = rec_join(m_p_head->m_p_parent, p_new_lf, 0, bag);
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/ |
split_fn_imps.hpp | 48 split_join_branch_bag bag; local 49 leaf_pointer p_split_lf = split_prep(r_key, other, bag); 52 _GLIBCXX_DEBUG_ASSERT(bag.empty()); 58 _GLIBCXX_DEBUG_ASSERT(!bag.empty()); 64 bag);
|
insert_join_fn_imps.hpp | 48 split_join_branch_bag bag; local 49 if (!join_prep(other, bag)) 57 other.m_p_head->m_p_parent, 0, bag); 397 split_join_branch_bag bag; local 398 bag.add_branch(); 399 m_p_head->m_p_parent = rec_join(m_p_head->m_p_parent, p_new_lf, 0, bag);
|
/external/chromium/chrome/browser/sync/util/ |
cryptographer.cc | 91 // Create a bag of all the Nigori parameters we know about. 92 sync_pb::NigoriKeyBag bag; local 96 sync_pb::NigoriKey* key = bag.add_key(); 103 // Encrypt the bag with the default Nigori. 104 return Encrypt(bag, encrypted); 136 sync_pb::NigoriKeyBag bag; local 137 if (!Decrypt(encrypted, &bag)) { 140 InstallKeys(encrypted.key_name(), bag); 162 sync_pb::NigoriKeyBag bag; 163 if (!bag.ParseFromString(plaintext)) [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
devicemanager.cc | 408 CComPtr<IPropertyBag> bag; local 410 __uuidof(bag), reinterpret_cast<void**>(&bag)))) { 413 if (SUCCEEDED(bag->Read(kFriendlyName, &name, 0)) && 418 if (SUCCEEDED(bag->Read(kDevicePath, &path, 0)) && 434 HRESULT GetStringProp(IPropertyStore* bag, PROPERTYKEY key, std::string* out) { 439 HRESULT hr = bag->GetValue(key, &var);
|
/external/openssl/include/openssl/ |
pkcs12.h | 114 struct pkcs12_bag_st *bag; /* secret, crl and certbag */ member in union:__anon8893::__anon8894 116 X509_SIG *shkeybag; /* shrouded key bag */ 134 ASN1_TYPE *other; /* Secret or other bag */ 158 #define M_PKCS12_cert_bag_type(bg) OBJ_obj2nid((bg)->value.bag->type) 161 #define PKCS12_get_attr(bag, attr_nid) \ 162 PKCS12_get_attr_gen(bag->attrib, attr_nid) 172 X509 *PKCS12_certbag2x509(PKCS12_SAFEBAG *bag); 173 X509_CRL *PKCS12_certbag2x509crl(PKCS12_SAFEBAG *bag); 179 PKCS8_PRIV_KEY_INFO *PKCS12_decrypt_skey(PKCS12_SAFEBAG *bag, const char *pass, 199 int PKCS12_add_localkeyid(PKCS12_SAFEBAG *bag, unsigned char *name, int namelen) [all...] |
/external/valgrind/main/coregrind/ |
m_wordfm.c | 856 WordBag* bag = alloc_nofail(cc, sizeof(WordBag)); local 857 bag->fm = VG_(newFM)( alloc_nofail, cc, dealloc, NULL ); 858 return bag; 861 void VG_(deleteBag) ( WordBag* bag ) 863 void (*dealloc)(void*) = bag->fm->dealloc; 864 VG_(deleteFM)( bag->fm, NULL, NULL ); 865 VG_(memset)(bag, 0, sizeof(WordBag)); 866 dealloc(bag); 869 void VG_(addToBag)( WordBag* bag, UWord w ) 872 if (VG_(lookupFM)(bag->fm, &key, &count, w)) [all...] |
/frameworks/base/core/jni/ |
android_util_AssetManager.cpp | 955 // Retrieve the default style bag, if requested. 964 // Retrieve the style class bag, if requested. 1419 const ResTable::bag_entry* bag = startOfBag; local 1477 const ResTable::bag_entry* bag = startOfBag; local 1542 const ResTable::bag_entry* bag = startOfBag; local [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
JDKPKCS12KeyStore.java | 698 Pfx bag = new Pfx(obj); local 699 ContentInfo info = bag.getAuthSafe(); 704 if (bag.getMacData() != null) // check the mac code 706 MacData mData = bag.getMacData(); [all...] |
/frameworks/base/libs/utils/ |
ResourceTypes.cpp | 1550 const bag_entry* bag; local 3181 const bag_entry* bag; local 3558 const bag_entry* bag; local 3597 const bag_entry* bag; local [all...] |