Searched defs:Store (Results 1 - 25 of 72) sorted by path

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java5 public interface Store interface
/external/chromium_org/ash/display/
H A Ddisplay_controller.cc158 void Store(bool clear_focus) { function in class:ash::FocusActivationStore
680 focus_activation_store_->Store(clear_focus);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_cache.cc136 FileError FileCache::Store(const std::string& id, function in class:drive::internal::FileCache
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_store.cc54 bool CloudExternalDataStore::Store(const std::string& policy, function in class:policy::CloudExternalDataStore
58 return cache_->Store(cache_key_, GetSubkey(policy, hash), data);
H A Ddevice_cloud_policy_store_chromeos.cc38 void DeviceCloudPolicyStoreChromeOS::Store( function in class:policy::DeviceCloudPolicyStoreChromeOS
124 device_settings_service_->Store(
H A Ddevice_local_account_policy_store.cc45 void DeviceLocalAccountPolicyStore::Store( function in class:policy::DeviceLocalAccountPolicyStore
H A Duser_cloud_policy_store_chromeos.cc199 void UserCloudPolicyStoreChromeOS::Store( function in class:policy::UserCloudPolicyStoreChromeOS
H A Duser_policy_disk_cache.cc39 void UserPolicyDiskCache::Store( function in class:policy::UserPolicyDiskCache
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_settings_cache.cc27 bool Store(const em::PolicyData& policy, PrefService* local_state) { function in namespace:chromeos::device_settings_cache
H A Ddevice_settings_service.cc224 void DeviceSettingsService::Store(scoped_ptr<em::PolicyFetchResponse> policy, function in class:chromeos::DeviceSettingsService
/external/chromium_org/components/policy/core/common/cloud/
H A Dcloud_policy_store.cc24 void CloudPolicyStore::Store( function in class:policy::CloudPolicyStore
28 Store(policy);
H A Dcomponent_cloud_policy_store.cc158 bool ComponentCloudPolicyStore::Store(const PolicyNamespace& ns, function in class:policy::ComponentCloudPolicyStore
170 cache_->Store(constants->proto_cache_key, ns.component_id, serialized_policy);
171 cache_->Store(constants->data_cache_key, ns.component_id, data);
H A Dresource_cache.cc73 bool ResourceCache::Store(const std::string& key, function in class:policy::ResourceCache
H A Duser_cloud_policy_store.cc197 // Cancel any pending Load/Store/Validate operations.
220 // Cancel any pending Load/Store/Validate operations.
323 void UserCloudPolicyStore::Store(const em::PolicyFetchResponse& policy) { function in class:policy::UserCloudPolicyStore
/external/chromium_org/content/browser/
H A Drenderer_data_memoizing_store.h39 // Store adds |item| to this collection, associates it with the given render
42 int Store(T* item, int process_id) { function in class:content::RendererDataMemoizingStore
H A Dsigned_certificate_timestamp_store_impl.cc27 int SignedCertificateTimestampStoreImpl::Store( function in class:content::SignedCertificateTimestampStoreImpl
30 return store_.Store(sct, process_id);
/external/chromium_org/net/disk_cache/blockfile/
H A Dmapped_file.cc20 bool MappedFile::Store(const FileBlock* block) { function in class:disk_cache::MappedFile
32 bool MappedFile::Store(const FileBlock* block, function in class:disk_cache::MappedFile
H A Dstorage_block-inl.h27 Store();
133 template<typename T> bool StorageBlock<T>::Store() { function in class:disk_cache::StorageBlock
136 if (file_->Store(this)) {
162 template<typename T> bool StorageBlock<T>::Store(FileIOCallback* callback, function in class:disk_cache::StorageBlock
166 if (file_->Store(this, callback, completed)) {
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dhash.h145 inline void Store(const uint8_t *data, const int ix) { function in class:brotli::HashLongestMatch
152 // Store hashes for a range of data.
155 Store(&data[p & mask], startix + p);
/external/chromium_org/v8/src/arm64/
H A Ddelayed-masm-arm64.cc135 void DelayedMasm::Store(const CPURegister& rd, const MemOperand& operand) { function in class:v8::internal::DelayedMasm
H A Dmacro-assembler-arm64.cc649 void MacroAssembler::Store(const Register& rt, function in class:v8::internal::MacroAssembler
2664 // Store filler to memory in pairs.
3669 // Store the heap number map and the value in the allocated object.
4000 // Store the result.
4241 // Store pointer to buffer and increment buffer top.
/external/chromium_org/v8/src/compiler/
H A Dmachine-operator.cc166 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \
167 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \
170 "Store", StoreRepresentation(k##Type, write_barrier_kind)) {} \
172 struct Store##Type##NoWriteBarrier##Operator FINAL \
173 : public Store##Type##Operator { \
174 Store##Type##NoWriteBarrier##Operator() \
175 : Store##Type##Operator(kNoWriteBarrier) {} \
177 struct Store##Type##FullWriteBarrier##Operator FINAL \
178 : public Store##Type##Operator { \
179 Store##Typ
221 const Operator* MachineOperatorBuilder::Store(StoreRepresentation rep) { function in class:v8::internal::compiler::MachineOperatorBuilder
[all...]
H A Draw-machine-assembler.h102 void Store(MachineType rep, Node* base, Node* value) { function in class:v8::internal::compiler::RawMachineAssembler
103 Store(rep, base, Int32Constant(0), value);
105 void Store(MachineType rep, Node* base, Node* index, Node* value) { function in class:v8::internal::compiler::RawMachineAssembler
106 NewNode(machine()->Store(StoreRepresentation(rep, kNoWriteBarrier)), base,
/external/chromium_org/v8/src/
H A Dhydrogen-gvn.cc81 void Store(SideEffects side_effects, HInstruction* instr);
335 void HSideEffectMap::Store(SideEffects side_effects, HInstruction* instr) { function in class:v8::internal::BASE_EMBEDDED::HSideEffectMap
833 // Store instruction as the dominating one for tracked side effects.
835 dominators->Store(changes, instr);
/external/chromium_org/v8/src/ia32/
H A Dmacro-assembler-ia32.cc53 void MacroAssembler::Store(Register src, const Operand& dst, Representation r) { function in class:v8::internal::MacroAssembler
166 // Store pointer to buffer.
2511 // Store the value in register src in the safepoint register stack

Completed in 2748 milliseconds

123