HomeSort by relevance Sort by last modified time
    Searched full:cert_handles (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/net/cert/
cert_verify_proc_android.cc 96 X509Certificate::OSCertHandles cert_handles = local
101 if (cert_handles.empty() || cert_handles[0] != cert_handle)
102 cert_handles.insert(cert_handles.begin(), cert_handle);
104 chain_bytes->reserve(cert_handles.size());
106 cert_handles.begin(); it != cert_handles.end(); ++it) {
  /external/chromium_org/chrome/browser/ui/android/
website_settings_popup_android.cc 47 net::X509Certificate::OSCertHandles cert_handles = local
51 if (cert_handles.empty() || cert_handles[0] != cert->os_cert_handle())
52 cert_handles.insert(cert_handles.begin(), cert->os_cert_handle());
54 cert_chain.reserve(cert_handles.size());
56 cert_handles.begin();
57 it != cert_handles.end();
  /external/chromium_org/chrome/common/net/
x509_certificate_model_openssl.cc 210 net::X509Certificate::OSCertHandles* cert_handles) {
212 cert_handles->push_back(net::X509Certificate::DupOSCertHandle(cert_handle));
215 void DestroyCertChain(net::X509Certificate::OSCertHandles* cert_handles) {
216 for (net::X509Certificate::OSCertHandles::iterator i = cert_handles->begin();
217 i != cert_handles->end(); ++i)
219 cert_handles->clear();
x509_certificate_model_nss.cc 227 X509Certificate::OSCertHandles* cert_handles) {
234 cert_handles->push_back(CERT_DupCertificate(node->cert));
239 void DestroyCertChain(X509Certificate::OSCertHandles* cert_handles) {
240 for (X509Certificate::OSCertHandles::iterator i(cert_handles->begin());
241 i != cert_handles->end(); ++i)
243 cert_handles->clear();
x509_certificate_model.h 90 net::X509Certificate::OSCertHandles* cert_handles);
91 void DestroyCertChain(net::X509Certificate::OSCertHandles* cert_handles);

Completed in 2760 milliseconds