OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:trust_bits
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/net/cert/
nss_cert_database.cc
162
TrustBits
trust_bits
,
167
slot.get(), certificates, root,
trust_bits
, not_imported);
175
TrustBits
trust_bits
,
179
slot.get(), certificates,
trust_bits
, not_imported);
199
TrustBits
trust_bits
= TRUST_DEFAULT;
local
201
trust_bits
|= DISTRUSTED_SSL;
203
trust_bits
|= TRUSTED_SSL;
206
trust_bits
|= DISTRUSTED_EMAIL;
208
trust_bits
|= TRUSTED_EMAIL;
211
trust_bits
|= DISTRUSTED_OBJ_SIGN
[
all
...]
nss_cert_database.h
148
// according to |
trust_bits
|. Any certificates that could not be imported
154
TrustBits
trust_bits
,
162
// |
trust_bits
| can be set to explicitly trust or distrust the certificate, or
168
TrustBits
trust_bits
,
183
TrustBits
trust_bits
);
/external/chromium_org/chrome/browser/
certificate_manager_model.h
68
// according to |
trust_bits
|. Any certificates that could not be imported
70
// |
trust_bits
| should be a bit field of TRUST* values from NSSCertDatabase.
75
net::NSSCertDatabase::TrustBits
trust_bits
,
83
// |
trust_bits
| can be set to explicitly trust or distrust the certificate, or
90
net::NSSCertDatabase::TrustBits
trust_bits
,
94
// |
trust_bits
| should be a bit field of TRUST* values from NSSCertDatabase.
98
net::NSSCertDatabase::TrustBits
trust_bits
);
certificate_manager_model.cc
117
net::NSSCertDatabase::TrustBits
trust_bits
,
119
bool result = cert_db_->ImportCACerts(certificates,
trust_bits
, not_imported);
127
net::NSSCertDatabase::TrustBits
trust_bits
,
129
bool result = cert_db_->ImportServerCert(certificates,
trust_bits
,
139
net::NSSCertDatabase::TrustBits
trust_bits
) {
140
return cert_db_->SetCertTrust(cert, type,
trust_bits
);
/external/chromium/net/base/
cert_database_openssl.cc
93
unsigned int
trust_bits
) {
cert_database.h
135
// according to |
trust_bits
|. Any certificates that could not be imported
141
unsigned int
trust_bits
,
162
unsigned int
trust_bits
);
cert_database_nss.cc
200
unsigned int
trust_bits
,
203
bool success = psm::ImportCACerts(certificates, root,
trust_bits
,
/external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.cc
548
net::NSSCertDatabase::TrustBits
trust_bits
=
local
551
static_cast<bool>(
trust_bits
& net::NSSCertDatabase::TRUSTED_SSL));
553
static_cast<bool>(
trust_bits
& net::NSSCertDatabase::TRUSTED_EMAIL));
555
static_cast<bool>(
trust_bits
& net::NSSCertDatabase::TRUSTED_OBJ_SIGN));
[
all
...]
Completed in 304 milliseconds