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

  /external/chromium/net/base/
test_root_certs.h 29 // TestRootCerts is a helper class for unit tests that is used to
32 class TestRootCerts {
35 static TestRootCerts* GetInstance();
74 friend struct base::DefaultLazyInstanceTraits<TestRootCerts>;
76 TestRootCerts();
77 ~TestRootCerts();
98 DISALLOW_COPY_AND_ASSIGN(TestRootCerts);
test_root_certs.cc 20 base::LazyInstance<TestRootCerts,
21 base::LeakyLazyInstanceTraits<TestRootCerts> >
38 TestRootCerts* TestRootCerts::GetInstance() {
42 bool TestRootCerts::HasInstance() {
46 bool TestRootCerts::AddFromFile(const FilePath& file) {
54 TestRootCerts::TestRootCerts() {
test_root_certs_openssl.cc 17 bool TestRootCerts::Add(X509Certificate* certificate) {
33 void TestRootCerts::Clear() {
41 bool TestRootCerts::IsEmpty() const {
45 TestRootCerts::~TestRootCerts() {}
47 void TestRootCerts::Init() {
test_root_certs_mac.cc 58 bool TestRootCerts::Add(X509Certificate* certificate) {
67 void TestRootCerts::Clear() {
71 bool TestRootCerts::IsEmpty() const {
75 OSStatus TestRootCerts::FixupSecTrustRef(SecTrustRef trust_ref) const {
128 TestRootCerts::~TestRootCerts() {}
130 void TestRootCerts::Init() {
test_root_certs_nss.cc 18 // TestRootCerts.
19 class TestRootCerts::TrustEntry {
40 TestRootCerts::TrustEntry::TrustEntry(CERTCertificate* certificate,
46 TestRootCerts::TrustEntry::~TrustEntry() {
50 bool TestRootCerts::Add(X509Certificate* certificate) {
87 void TestRootCerts::Clear() {
107 bool TestRootCerts::IsEmpty() const {
111 TestRootCerts::~TestRootCerts() {
115 void TestRootCerts::Init()
    [all...]
test_root_certs_win.cc 118 if (!ok || TestRootCerts::GetInstance()->IsEmpty() ||
136 memory_store, TestRootCerts::GetInstance()->temporary_roots(), 0, 0);
141 bool TestRootCerts::Add(X509Certificate* certificate) {
159 void TestRootCerts::Clear() {
167 bool TestRootCerts::IsEmpty() const {
171 HCERTCHAINENGINE TestRootCerts::GetChainEngine() const {
194 TestRootCerts::~TestRootCerts() {
198 void TestRootCerts::Init() {

Completed in 40 milliseconds