Searched defs:store_ (Results 1 - 15 of 15) sorted by relevance

/external/chromium/chrome/browser/policy/
H A Dasynchronous_policy_test_base.h45 scoped_ptr<MockConfigurationPolicyStore> store_; member in class:policy::AsynchronousPolicyTestBase
H A Dconfiguration_policy_provider_mac_unittest.cc135 store_.reset(new MockConfigurationPolicyStore);
140 scoped_ptr<MockConfigurationPolicyStore> store_; member in class:policy::ConfigurationPolicyProviderMacTest
146 EXPECT_TRUE(provider.Provide(store_.get()));
147 EXPECT_TRUE(store_->policy_map().empty());
160 EXPECT_TRUE(provider.Provide(store_.get()));
161 EXPECT_TRUE(store_->policy_map().empty());
175 EXPECT_TRUE(provider.Provide(store_.get()));
176 EXPECT_TRUE(store_->policy_map().empty());
190 EXPECT_TRUE(provider.Provide(store_.get()));
191 ASSERT_EQ(1U, store_
[all...]
H A Dconfiguration_policy_pref_store_unittest.cc41 store_(new ConfigurationPolicyPrefStore(&provider_)) {}
44 scoped_refptr<ConfigurationPolicyPrefStore> store_; member in class:policy::ConfigurationPolicyPrefStoreTestBase
55 store_->GetValue(GetParam().pref_name(), NULL));
63 store_->OnUpdatePolicy();
66 store_->GetValue(GetParam().pref_name(), &value));
97 store_->GetValue(GetParam().pref_name(), NULL));
103 store_->OnUpdatePolicy();
106 store_->GetValue(GetParam().pref_name(), &value));
139 store_->GetValue(GetParam().pref_name(), NULL));
144 store_
[all...]
H A Dconfiguration_policy_provider_win_unittest.cc153 scoped_ptr<MockConfigurationPolicyStore> store_; member in class:policy::ConfigurationPolicyProviderWinTest
196 store_.reset(new MockConfigurationPolicyStore);
299 provider_->Provide(store_.get());
300 EXPECT_TRUE(store_->policy_map().empty());
312 provider_->Provide(store_.get());
313 EXPECT_TRUE(store_->policy_map().empty());
322 provider_->Provide(store_.get());
323 const Value* value = store_->Get(GetParam().type());
334 provider_->Provide(store_.get());
335 const Value* value = store_
[all...]
/external/chromium/chrome/browser/net/
H A Dsqlite_persistent_cookie_store_unittest.cc30 store_ = new SQLitePersistentCookieStore(
33 ASSERT_TRUE(store_->Load(&cookies));
36 store_->AddCookie(
47 scoped_refptr<SQLitePersistentCookieStore> store_; member in class:SQLitePersistentCookieStoreTest
51 store_->SetClearLocalStateOnExit(false);
52 store_ = NULL;
65 store_->SetClearLocalStateOnExit(true);
69 store_ = NULL;
85 store_ = NULL;
90 store_
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dpassword_manager_unittest.cc40 : store_(store) {}
42 store_->Shutdown();
45 return store_;
48 scoped_refptr<PasswordStore> store_; member in class:TestingProfileWithPasswordStore
90 store_ = new MockPasswordStore();
91 profile_.reset(new TestingProfileWithPasswordStore(store_));
101 store_ = NULL;
123 scoped_refptr<MockPasswordStore> store_; member in class:PasswordManagerTest
141 EXPECT_CALL(*store_, GetLogins(_,_))
160 EXPECT_CALL(*store_, AddLogi
[all...]
H A Dpassword_store_mac_unittest.cc911 store_ = new PasswordStoreMac(keychain_, login_db_);
912 ASSERT_TRUE(store_->Init());
916 store_->Shutdown();
925 MockKeychain* keychain_; // Owned by store_.
926 LoginDatabase* login_db_; // Owned by store_.
927 scoped_refptr<PasswordStoreMac> store_; variable
933 // This is done manually, rather than through store_->AddLogin, because the
993 store_->UpdateLogin(*form);
1002 store_->GetLogins(*joint_form, &consumer);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file_unittest.cc37 store_.reset(new SafeBrowsingStoreFile());
38 store_->Init(filename_, NULL);
41 if (store_.get())
42 store_->Delete();
43 store_.reset();
55 scoped_ptr<SafeBrowsingStoreFile> store_; member in class:__anon2251::SafeBrowsingStoreFileTest
59 TEST_STORE(SafeBrowsingStoreFileTest, store_.get(), filename_);
70 EXPECT_TRUE(store_->BeginUpdate());
75 store_.reset(new SafeBrowsingStoreFile());
76 store_
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_model.h461 scoped_refptr<BookmarkStorage> store_; member in class:BookmarkModel
/external/chromium/net/base/
H A Dx509_certificate_openssl.cc219 X509_STORE* store() const { return store_.get(); }
222 store_.reset(X509_STORE_new());
223 DCHECK(store_.get());
224 X509_STORE_set_default_paths(store_.get());
238 crypto::ScopedOpenSSL<X509_STORE, X509_STORE_free> store_; member in class:net::__anon2859::X509InitSingleton
H A Dcookie_monster.h350 if (store_)
494 scoped_refptr<PersistentCookieStore> store_; member in class:net::CookieMonster
/external/chromium/net/socket/
H A Dssl_client_socket_win.cc346 store_ = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, NULL, 0, NULL);
350 if (store_) {
351 BOOL ok = CertCloseStore(store_, CERT_CLOSE_STORE_CHECK_FLAG);
358 BOOL ok = CertAddCertificateContextToStore(store_, client_cert,
366 HCERTSTORE store_; member in class:net::ClientCertStore
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable.cc349 Directory::Directory() : kernel_(NULL), store_(NULL) {
386 DCHECK_EQ(static_cast<DirectoryBackingStore*>(NULL), store_); local
389 store_ = CreateBackingStore(name, db_path);
395 DirOpenResult result = store_->Load(&metas_bucket, &info);
406 if (store_)
407 delete store_;
408 store_ = NULL;
627 DCHECK(store_);
634 success = store_->SaveChanges(snapshot);
H A Dsyncable.h756 bool good() const { return NULL != store_; }
1068 DirectoryBackingStore* store_; member in class:syncable::Directory
/external/v8/src/
H A Dparser.h106 : store_(store),
130 return (store_.length() > PreparseDataConstants::kHeaderSize)
131 ? store_[PreparseDataConstants::kSymbolCountOffset]
136 bool has_error() { return store_[PreparseDataConstants::kHasErrorOffset]; }
137 unsigned magic() { return store_[PreparseDataConstants::kMagicOffset]; }
138 unsigned version() { return store_[PreparseDataConstants::kVersionOffset]; }
141 Vector<unsigned> store_; member in class:v8::internal::ScriptDataImpl
153 : store_(reinterpret_cast<unsigned*>(const_cast<char*>(backing_store)),

Completed in 688 milliseconds