Searched defs:store (Results 1 - 25 of 312) sorted by path

1234567891011>>

/external/apache-http/src/org/apache/http/client/protocol/
H A DClientContextConfigurer.java66 public void setCookieStore(final CookieStore store) { argument
67 this.context.setAttribute(COOKIE_STORE, store);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DExtendedPKIXParameters.java255 * If <code>store</code> is <code>null</code> it is ignored.
257 * @param store The store to add.
260 public void addStore(Store store) argument
262 if (store != null)
264 stores.add(store);
277 * If <code>store</code> is <code>null</code> it is ignored.
279 * @param store The store to add.
282 public void addAdditionalStore(Store store) argument
293 addAddionalStore(Store store) argument
[all...]
/external/chromium_org/base/prefs/
H A Dpref_value_store.cc25 PrefValueStore* store,
33 pref_value_store_ = store;
130 // A notification is sent when the pref value in any store changes. If this
131 // store is currently being overridden by a higher-priority store, the
184 PrefValueStore::PrefStoreType store) const {
188 return GetValueFromStore(name, store, &tmp_value);
222 const PrefStore* store = GetPrefStore(static_cast<PrefStoreType>(store_type)); local
223 if (store && store
24 Initialize( PrefValueStore* store, PrefStore* pref_store, PrefValueStore::PrefStoreType type) argument
232 GetValueFromStoreWithType( const char* name, base::Value::Type type, PrefStoreType store, const base::Value** out_value) const argument
276 scoped_refptr<PrefStore> store = local
[all...]
H A Dpref_value_store.h71 // notified of preferences changing in the store. This does not
95 // indicated pref store, even if that value is currently being overridden by
102 // being controlled by the indicated pref store and not being overridden by
155 void Initialize(PrefValueStore* store,
159 PrefStore* store() { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper
160 const PrefStore* store() const { return pref_store_.get(); } function in class:PrefValueStore::PrefStoreKeeper
173 // Type of the pref store.
191 bool PrefValueInStore(const char* name, PrefStoreType store) const;
196 // overridden by a higher-priority store.
201 // Returns the pref store typ
[all...]
/external/chromium_org/chrome/browser/android/signin/
H A Dsignin_manager_android.cc153 policy::CloudPolicyStore* store = manager->core()->store(); local
155 if (store && store->is_managed() && store->policy()->has_username()) {
158 env, gaia::ExtractDomainName(store->policy()->username())));
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Ddevice_local_account_external_policy_loader.cc21 DeviceLocalAccountExternalPolicyLoader(policy::CloudPolicyStore* store, argument
23 : store_(store),
65 policy::CloudPolicyStore* store) {
67 DCHECK_EQ(store_, store);
72 policy::CloudPolicyStore* store) {
74 DCHECK_EQ(store_, store);
64 OnStoreLoaded( policy::CloudPolicyStore* store) argument
71 OnStoreError( policy::CloudPolicyStore* store) argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dexisting_user_controller_browsertest.cc364 policy::CloudPolicyStore* store = variable
371 ->store();
372 if (!store->has_policy()) {
376 store->AddObserver(&observer);
377 EXPECT_CALL(observer, OnStoreLoaded(store))
381 store->RemoveObserver(&observer);
H A Dversion_info_updater.cc53 policy_manager->core()->store()->RemoveObserver(this);
73 policy_manager->core()->store()->AddObserver(this);
132 void VersionInfoUpdater::OnStoreLoaded(policy::CloudPolicyStore* store) { argument
136 void VersionInfoUpdater::OnStoreError(policy::CloudPolicyStore* store) { argument
/external/chromium_org/chrome/browser/chromeos/login/users/avatar/
H A Duser_image_manager_browsertest.cc94 return policy_manager->core()->store();
642 virtual void OnStoreLoaded(policy::CloudPolicyStore* store) OVERRIDE {
647 virtual void OnStoreError(policy::CloudPolicyStore* store) OVERRIDE {
692 policy::CloudPolicyStore* store = GetStoreForUser(user); local
693 ASSERT_TRUE(store);
703 store->Load();
728 store->AddObserver(this);
729 store->Load();
731 store->RemoveObserver(this);
780 policy::CloudPolicyStore* store local
843 policy::CloudPolicyStore* store = GetStoreForUser(user); local
[all...]
/external/chromium_org/chrome/browser/chromeos/login/users/wallpaper/
H A Dwallpaper_manager_policy_browsertest.cc77 return policy_manager->core()->store();
248 policy::CloudPolicyStore* store = GetStoreForUser(user); local
249 ASSERT_TRUE(store);
250 store->Load();
251 ASSERT_EQ(policy::CloudPolicyStore::STATUS_OK, store->status());
253 store->validation_status());
288 // automatically) and store color to recognize it later.
/external/chromium_org/chrome/browser/chromeos/platform_keys/
H A Dplatform_keys_service_factory.cc45 extensions::StateStore* store = local
47 DCHECK(store);
48 return new PlatformKeysService(context, store);
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.cc44 CloudPolicyStore* store = core->store(); local
45 ASSERT_TRUE(store);
50 new ExternalDataFetcher(store->external_data_manager(),
52 store->SetPolicyMapForTesting(policy_map);
H A Ddevice_cloud_policy_initializer.cc186 void DeviceCloudPolicyInitializer::OnStoreLoaded(CloudPolicyStore* store) { argument
190 void DeviceCloudPolicyInitializer::OnStoreError(CloudPolicyStore* store) { argument
H A Ddevice_cloud_policy_invalidator_unittest.cc396 CloudPolicyStore* store = static_cast<CloudPolicyStore*>( local
400 ASSERT_TRUE(store);
415 store->Store(device_policy_.policy(), 1);
416 invalidator->OnStoreLoaded(store);
523 CloudPolicyStore* store = static_cast<CloudPolicyStore*>( local
527 ASSERT_TRUE(store);
572 store->Store(device_policy_.policy(), 1);
573 invalidator->OnStoreLoaded(store);
612 CloudPolicyStore* store = static_cast<CloudPolicyStore*>( local
616 ASSERT_TRUE(store);
[all...]
H A Ddevice_cloud_policy_manager_chromeos.cc98 scoped_ptr<DeviceCloudPolicyStoreChromeOS> store,
104 store.get(),
108 device_store_(store.Pass()),
97 DeviceCloudPolicyManagerChromeOS( scoped_ptr<DeviceCloudPolicyStoreChromeOS> store, const scoped_refptr<base::SequencedTaskRunner>& task_runner, ServerBackedStateKeysBroker* state_keys_broker) argument
H A Ddevice_local_account_extension_tracker.cc22 CloudPolicyStore* store,
24 : store_(store),
47 CloudPolicyStore* store) {
51 void DeviceLocalAccountExtensionTracker::OnStoreError(CloudPolicyStore* store) { argument
20 DeviceLocalAccountExtensionTracker( const DeviceLocalAccount& account, CloudPolicyStore* store, SchemaRegistry* schema_registry) argument
46 OnStoreLoaded( CloudPolicyStore* store) argument
H A Ddevice_local_account_policy_service.cc122 scoped_ptr<DeviceLocalAccountPolicyStore> store,
129 store_(store.Pass()),
204 void DeviceLocalAccountPolicyBroker::OnStoreLoaded(CloudPolicyStore* store) { argument
209 void DeviceLocalAccountPolicyBroker::OnStoreError(CloudPolicyStore* store) { argument
314 return broker && broker->core()->store()->is_managed();
447 scoped_ptr<DeviceLocalAccountPolicyStore> store(
455 store.get());
460 store.Pass(),
555 CloudPolicyStore* store) {
558 if (it->second->core()->store()
119 DeviceLocalAccountPolicyBroker( const DeviceLocalAccount& account, const base::FilePath& component_policy_cache_path, scoped_ptr<DeviceLocalAccountPolicyStore> store, scoped_refptr<DeviceLocalAccountExternalDataManager> external_data_manager, const base::Closure& policy_update_callback, const scoped_refptr<base::SequencedTaskRunner>& task_runner) argument
554 GetBrokerForStore( CloudPolicyStore* store) argument
[all...]
H A Denrollment_handler_chromeos.cc43 DeviceCloudPolicyStoreChromeOS* store,
56 : store_(store),
183 void EnrollmentHandlerChromeOS::OnStoreLoaded(CloudPolicyStore* store) { argument
184 DCHECK_EQ(store_, store);
189 // again after the store finishes loading.
196 void EnrollmentHandlerChromeOS::OnStoreError(CloudPolicyStore* store) { argument
197 DCHECK_EQ(store_, store);
402 // Get the token service so we can store our robot refresh token.
414 LOG(ERROR) << "Failed to store API refresh token.";
421 // For consumer management enrollment, we don't store th
42 EnrollmentHandlerChromeOS( DeviceCloudPolicyStoreChromeOS* store, EnterpriseInstallAttributes* install_attributes, ServerBackedStateKeysBroker* state_keys_broker, chromeos::DeviceSettingsService* device_settings_service, scoped_ptr<CloudPolicyClient> client, scoped_refptr<base::SequencedTaskRunner> background_task_runner, const std::string& auth_token, const std::string& client_id, bool is_auto_enrollment, const std::string& requisition, const AllowedDeviceModes& allowed_device_modes, em::PolicyData::ManagementMode management_mode, const EnrollmentCallback& completion_callback) argument
[all...]
H A Duser_cloud_policy_manager_chromeos.cc75 scoped_ptr<CloudPolicyStore> store,
85 store.get(),
89 store_(store.Pass()),
283 // If the store has a verified policy blob received from the server then apply
286 if (!store()->has_policy())
74 UserCloudPolicyManagerChromeOS( scoped_ptr<CloudPolicyStore> store, scoped_ptr<CloudExternalDataManager> external_data_manager, const base::FilePath& component_policy_cache_path, bool wait_for_policy_fetch, base::TimeDelta initial_policy_fetch_timeout, const scoped_refptr<base::SequencedTaskRunner>& task_runner, const scoped_refptr<base::SequencedTaskRunner>& file_task_runner, const scoped_refptr<base::SequencedTaskRunner>& io_task_runner) argument
/external/chromium_org/chrome/browser/dom_distiller/
H A Ddom_distiller_service_factory.cc23 scoped_ptr<DomDistillerStoreInterface> store,
27 : DomDistillerService(store.Pass(),
22 DomDistillerContextKeyedService( scoped_ptr<DomDistillerStoreInterface> store, scoped_ptr<DistillerFactory> distiller_factory, scoped_ptr<DistillerPageFactory> distiller_page_factory, scoped_ptr<DistilledPagePrefs> distilled_page_prefs) argument
/external/chromium_org/chrome/browser/
H A Denumerate_modules_model_win.cc723 HCERTSTORE store = NULL; local
735 &store,
772 store,
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_api.cc90 scoped_refptr<ContentSettingsStore> store = local
92 store->ClearContentSettingsForExtension(extension_id(), scope);
241 scoped_refptr<ContentSettingsStore> store = local
243 store->SetExtensionContentSetting(extension_id(), primary_pattern,
H A Dcontent_settings_store_unittest.cc50 const ContentSettingsStore* store,
56 store->GetRuleIterator(content_type, resource_identifier, incognito));
64 const ContentSettingsStore* store,
71 store->GetRuleIterator(content_type, resource_identifier, incognito));
89 ContentSettingsStore* store() { function in class:extensions::ContentSettingsStoreTest
100 store()->AddObserver(&observer);
105 GetContentSettingFromStore(store(),
117 GetContentSettingFromStore(store(),
128 store()->SetExtensionContentSetting(ext_id,
138 GetContentSettingFromStore(store(),
49 GetContentSettingFromStore( const ContentSettingsStore* store, const GURL& primary_url, const GURL& secondary_url, ContentSettingsType content_type, const std::string& resource_identifier, bool incognito) argument
63 GetSettingsForOneTypeFromStore( const ContentSettingsStore* store, ContentSettingsType content_type, const std::string& resource_identifier, bool incognito, std::vector<content_settings::Rule>* rules) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/declarative/
H A Drules_registry_with_cache_unittest.cc227 // The value store is first created during GetExtensionService.
228 TestingValueStore* store = env_.GetExtensionSystem()->value_store(); local
253 int write_count = store->write_count();
261 EXPECT_EQ(write_count + 1, store->write_count());
262 write_count = store->write_count();
270 EXPECT_EQ(write_count + 1, store->write_count());
271 write_count = store->write_count();
278 EXPECT_EQ(write_count, store->write_count());
281 int read_count = store->read_count();
286 EXPECT_EQ(read_count, store
389 TestingValueStore* store = system->value_store(); local
[all...]
/external/chromium_org/chrome/browser/extensions/api/preference/
H A Dpreference_api_prefs_unittest.cc279 scoped_refptr<ContentSettingsStore> store = content_settings_store(); variable
282 store->SetExtensionContentSetting(extension1()->id(),

Completed in 509 milliseconds

1234567891011>>