HomeSort by relevance Sort by last modified time
    Searched refs:store_ (Results 1 - 21 of 21) sorted by null

  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store_unittest.cc 30 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_ = new SQLitePersistentCookieStore
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file_unittest.cc 37 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:__anon3402::SafeBrowsingStoreFileTest
59 TEST_STORE(SafeBrowsingStoreFileTest, store_.get(), filename_);
70 EXPECT_TRUE(store_->BeginUpdate());
75 store_.reset(new SafeBrowsingStoreFile());
76 store_->Init(filename_, NULL)
    [all...]
  /external/chromium/chrome/browser/policy/
asynchronous_policy_provider_unittest.cc 26 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1);
30 provider.Provide(store_.get());
53 EXPECT_CALL(*store_, Apply(policy::kPolicyJavascriptEnabled, _)).Times(1);
54 provider.Provide(store_.get());
asynchronous_policy_test_base.cc 24 store_.reset(new MockConfigurationPolicyStore);
asynchronous_policy_test_base.h 45 scoped_ptr<MockConfigurationPolicyStore> store_; member in class:policy::AsynchronousPolicyTestBase
file_based_policy_provider_unittest.cc 49 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1);
50 provider.Provide(store_.get());
78 EXPECT_CALL(*store_, Apply(policy::kPolicySyncDisabled, _)).Times(1);
79 file_based_provider.Provide(store_.get());
configuration_policy_pref_store_unittest.cc 41 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_->OnUpdatePolicy()
    [all...]
configuration_policy_provider_mac_unittest.cc 135 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_->policy_map().size())
    [all...]
configuration_policy_provider_win_unittest.cc 153 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_->Get(GetParam().type())
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_manager_unittest.cc 40 : 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_, AddLogin(FormMatches(form)))
    [all...]
password_store_mac_unittest.cc 927 scoped_refptr<PasswordStoreMac> store_; variable
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 140 if (store_) {
143 store_->BookmarkModelDeleted();
148 if (store_.get()) {
161 store_ = new BookmarkStorage(profile_, this);
162 store_->LoadBookmarks(CreateLoadDetails());
210 if (store_.get())
211 store_->ScheduleSave();
240 if (store_.get())
241 store_->ScheduleSave();
273 if (store_.get()
    [all...]
bookmark_model.h 461 scoped_refptr<BookmarkStorage> store_; member in class:BookmarkModel
  /external/v8/src/
parser.h 106 : 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)),
parser.cc 295 if ((function_index_ + FunctionEntry::kSize <= store_.length())
296 && (static_cast<int>(store_[function_index_]) == start)) {
299 return FunctionEntry(store_.SubVector(index,
314 if (store_.length() < PreparseDataConstants::kHeaderSize) return false;
319 if (store_.length() <= PreparseDataConstants::kHeaderSize
330 if (store_.length() <= PreparseDataConstants::kHeaderSize + pos) {
337 if (store_.length() < PreparseDataConstants::kHeaderSize + pos) {
344 static_cast<int>(store_[PreparseDataConstants::kFunctionsSizeOffset]);
349 static_cast<int>(store_[PreparseDataConstants::kSymbolCountOffset]);
354 if (store_.length() < minimum_size) return false
    [all...]
  /external/chromium/net/base/
cookie_monster.cc 391 store_(store),
406 store_(store),
738 if (store_)
739 store_->SetClearLocalStateOnExit(clear_local_store);
749 if (initialized_ && store_)
750 store_->Flush(completion_task);
861 DCHECK(store_) << "Store must exist to initialize";
872 store_->Load(&cookies);
    [all...]
x509_certificate_openssl.cc 219 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::__anon4010::X509InitSingleton
cookie_monster.h 350 if (store_)
494 scoped_refptr<PersistentCookieStore> store_; member in class:net::CookieMonster
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_win.cc 346 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
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.cc 349 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);
    [all...]
syncable.h 756 bool good() const { return NULL != store_; }
1068 DirectoryBackingStore* store_; member in class:syncable::Directory
    [all...]

Completed in 862 milliseconds