Searched refs:store (Results 76 - 100 of 835) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/sync/test/integration/
H A Dpasswords_helper.cc81 void AddLogin(PasswordStore* store, const PasswordForm& form) { argument
82 ASSERT_TRUE(store);
84 store->AddLogin(form);
85 store->ScheduleTask(base::Bind(&PasswordStoreCallback, &wait_event));
89 void UpdateLogin(PasswordStore* store, const PasswordForm& form) { argument
90 ASSERT_TRUE(store);
92 store->UpdateLogin(form);
93 store->ScheduleTask(base::Bind(&PasswordStoreCallback, &wait_event));
97 void GetLogins(PasswordStore* store, std::vector<PasswordForm>& matches) { argument
98 ASSERT_TRUE(store);
106 RemoveLogin(PasswordStore* store, const PasswordForm& form) argument
114 RemoveLogins(PasswordStore* store) argument
[all...]
/external/chromium_org/sync/api/attachments/
H A Dfake_attachment_store_unittest.cc24 scoped_refptr<FakeAttachmentStore> store; member in class:syncer::FakeAttachmentStoreTest
37 : store(new FakeAttachmentStore(base::ThreadTaskRunnerHandle::Get())) {}
98 store->Write(some_attachments, write_callback);
105 store->Write(some_attachments, write_callback);
112 store->Read(some_attachment_ids, read_callback);
130 store->Write(some_attachments, write_callback);
137 store->Read(some_attachment_ids, read_callback);
160 store->Write(some_attachments, write_callback);
168 store->Read(ids, read_callback);
186 store
[all...]
/external/chromium_org/chrome/browser/geolocation/
H A Daccess_token_store_browsertest.cc20 // The token store factory implementation expects to be used from any well-known
49 scoped_refptr<AccessTokenStore>* store,
52 if (store->get() == NULL)
53 (*store) = new ChromeAccessTokenStore();
54 (*store)->LoadAccessTokens(callback);
99 scoped_refptr<AccessTokenStore> store(new ChromeAccessTokenStore());
100 store->SaveAccessToken(ref_url_, *token_to_set_);
48 StartTestStepFromClientThread( scoped_refptr<AccessTokenStore>* store, const AccessTokenStore::LoadAccessTokensCallbackType& callback) argument
/external/chromium_org/chrome/browser/policy/
H A Dprofile_policy_connector.cc157 CloudPolicyStore* store = user_cloud_policy_manager_->core()->store();
158 if (store && store->is_managed() && store->policy()->has_username())
159 return gaia::ExtractDomainName(store->policy()->username());
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchromevox.js234 * @param {Object} store The object.
236 cvox.ChromeVox.storeOn = function(store) {
237 store['isStickyPrefOn'] = cvox.ChromeVox.isStickyPrefOn;
238 cvox.ChromeVox.navigationManager.storeOn(store);
244 * @param {Object} store The object.
246 cvox.ChromeVox.readFrom = function(store) {
247 cvox.ChromeVox.isStickyPrefOn = store['isStickyPrefOn'];
248 cvox.ChromeVox.navigationManager.readFrom(store);
/external/chromium_org/rlz/lib/
H A Drlz_lib.cc148 rlz_lib::RlzValueStore* store = lock.GetStore(); local
149 if (!store || !store->HasAccess(rlz_lib::RlzValueStore::kWriteAccess))
152 // Write the new event to the value store.
163 return store->AddStatefulEvent(product, new_event_value.c_str());
168 rlz_lib::RlzValueStore* store) {
181 if (!store->ReadProductEvents(product, &events))
226 RlzValueStore* store = lock.GetStore(); local
227 if (!store || !store
166 GetProductEventsAsCgiHelper(rlz_lib::Product product, char* cgi, size_t cgi_size, rlz_lib::RlzValueStore* store) argument
245 RlzValueStore* store = lock.GetStore(); local
274 RlzValueStore* store = lock.GetStore(); local
303 RlzValueStore* store = lock.GetStore(); local
315 RlzValueStore* store = lock.GetStore(); local
500 rlz_lib::RlzValueStore* store = lock.GetStore(); local
615 RlzValueStore* store = lock.GetStore(); local
[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/libxml2/
H A Dtimsort.h281 TIM_SORT_MERGE(dst, run_stack, stack_curr, store); \
285 if (store->storage != NULL)\
287 free(store->storage);\
288 store->storage = NULL;\
319 static void TIM_SORT_RESIZE(TEMP_STORAGE_T *store, const size_t new_size) argument
321 if (store->alloc < new_size)
323 SORT_TYPE *tempstore = (SORT_TYPE *)realloc(store->storage, new_size * sizeof(SORT_TYPE));
329 store->storage = tempstore;
330 store->alloc = new_size;
334 static void TIM_SORT_MERGE(SORT_TYPE *dst, const TIM_SORT_RUN_T *stack, const int stack_curr, TEMP_STORAGE_T *store) argument
393 TIM_SORT_COLLAPSE(SORT_TYPE *dst, TIM_SORT_RUN_T *stack, int stack_curr, TEMP_STORAGE_T *store, const size_t size) argument
457 TEMP_STORAGE_T _store, *store; local
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dhistory.cc25 History::History(scoped_refptr<HistoryDataStore> store) argument
26 : store_(store),
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_service_stub.cc45 void ComponentCloudPolicyService::OnStoreLoaded(CloudPolicyStore* store) {} argument
47 void ComponentCloudPolicyService::OnStoreError(CloudPolicyStore* store) {} argument
H A Dmock_cloud_policy_store.h39 MOCK_METHOD1(OnStoreLoaded, void(CloudPolicyStore* store));
40 MOCK_METHOD1(OnStoreError, void(CloudPolicyStore* store));
H A Dpolicy_header_service.h47 virtual void OnStoreLoaded(CloudPolicyStore* store) OVERRIDE;
48 virtual void OnStoreError(CloudPolicyStore* store) OVERRIDE;
H A Dcloud_policy_manager.h82 // default implementation just copies over |store()->policy_map()|.
94 CloudPolicyStore* store() { return core_.store(); } function in class:policy::CloudPolicyManager
95 const CloudPolicyStore* store() const { return core_.store(); } function in class:policy::CloudPolicyManager
H A Dcloud_policy_core.h56 CloudPolicyStore* store,
63 CloudPolicyStore* store() { return store_; } function in class:policy::CloudPolicyCore
64 const CloudPolicyStore* store() const { return store_; } function in class:policy::CloudPolicyCore
H A Dcloud_policy_refresh_scheduler.h40 // |client| and |store| pointers must stay valid throughout the
44 CloudPolicyStore* store,
76 virtual void OnStoreLoaded(CloudPolicyStore* store) OVERRIDE;
77 virtual void OnStoreError(CloudPolicyStore* store) OVERRIDE;
/external/chromium_org/v8/src/
H A Dnatives-external.cc58 NativesStore* store = new NativesStore; local
66 store->ReadNameAndContentPair(source);
69 store->ReadNameAndContentPair(source);
71 store->debugger_count_ = debugger_count;
72 return store;
111 static void set(NativesStore* store) { argument
112 DCHECK(store);
113 holder_ = store;
H A Dhydrogen-store-elimination.h26 void ProcessStore(HStoreNamedField* store);
/external/e2fsprogs/tests/progs/
H A Dtest_icount_cmds.ct26 store;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DPluginFlyoutPreferences.java32 public PluginFlyoutPreferences(IPreferenceStore store, String prefix) { argument
33 m_store = store;
/external/lldb/test/api/multithreaded/
H A Dlistener_test.cpp25 g_done.store(true);
32 g_done.store(false);
/external/valgrind/main/drd/tests/
H A Dannotate_hb_race.stderr.exp2 Conflicting store by thread x at 0x........ size 4
H A Dhg03_inherit.stderr.exp3 Conflicting store by thread 3 at 0x........ size 4
9 Conflicting store by thread 3 at 0x........ size 4
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);

Completed in 384 milliseconds

1234567891011>>