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

  /external/chromium_org/net/quic/crypto/
common_cert_set.cc 23 // num_certs contains the number of certificates in this set.
24 size_t num_certs; member in struct:net::__anon14054::CertSet
25 // certs is an array of |num_certs| pointers to the DER encoded certificates.
27 // lens is an array of |num_certs| integers describing the length, in bytes,
80 if (index < kSets[i].num_certs) {
108 if (kSets[j].num_certs == 0) {
114 size_t max = kSets[j].num_certs - 1;
quic_server_info.cc 94 uint32 num_certs; local
95 if (!p.ReadUInt32(&iter, &num_certs)) {
96 DVLOG(1) << "Malformed num_certs";
100 for (uint32 i = 0; i < num_certs; i++) {
  /external/chromium_org/chrome/browser/chromeos/options/
cert_library.cc 180 int num_certs = NumCertificates(CERT_TYPE_SERVER_CA); local
181 for (int index = 0; index < num_certs; ++index) {
192 int num_certs = NumCertificates(CERT_TYPE_USER); local
193 for (int index = 0; index < num_certs; ++index) {
vpn_config_view.cc 200 int num_certs = local
202 if (num_certs == 0)
204 return num_certs;
    [all...]
wifi_config_view.cc 320 int num_certs = local
322 if (num_certs == 0)
324 return num_certs;
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 806 unsigned int status, num_certs, i; local
855 certs = gnutls_certificate_get_peers(conn->session, &num_certs);
863 for (i = 0; i < num_certs; i++) {
876 "certificate %d/%d", i + 1, num_certs);
890 i + 1, num_certs, buf);
902 i + 1, num_certs);

Completed in 343 milliseconds