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

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java5 public interface Store interface
/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/content/browser/
H A Dsigned_certificate_timestamp_store_impl.cc27 int SignedCertificateTimestampStoreImpl::Store( function in class:content::SignedCertificateTimestampStoreImpl
30 return store_.Store(sct, process_id);
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
/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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store; typedef in namespace:clang::ento
31 Store store;
34 StoreRef(Store, StoreManager &);
46 Store getStore() const { return store; }
/external/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.h32 Store = (1<<2), enumerator in enum:llvm::SPII::__anon26142
/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 Duser_policy_disk_cache.cc39 void UserPolicyDiskCache::Store( function in class:policy::UserPolicyDiskCache
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
/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 Dresource_cache.cc73 bool ResourceCache::Store(const std::string& key, function in class:policy::ResourceCache
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 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/v8/src/arm64/
H A Ddelayed-masm-arm64.cc135 void DelayedMasm::Store(const CPURegister& rd, const MemOperand& operand) { function in class:v8::internal::DelayedMasm
/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...]
/external/chromium_org/v8/src/
H A Dtyping.h43 typedef v8::internal::NestedEffects<int, kNoVar> Store; typedef in class:v8::internal::AstTyper
47 Store store_;
/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/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp222 StoreInst *Store = nullptr; local
224 for (; !Store || !SawRelease; ++I) {
240 if (Store) {
248 Store = dyn_cast<StoreInst>(Inst);
249 if (!Store || !Store->isSimple()) return;
250 if (Store->getPointerOperand() != Loc.Ptr) return;
254 Value *New = StripPointerCastsAndObjCCalls(Store->getValueOperand());
257 I = Store;
274 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
[all...]
/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/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp1 //== Store.cpp - Interface for maps from Locations to Values ----*- C++ -*--==//
10 // This file defined the types Store and StoreManager.
14 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"
28 StoreRef StoreManager::enterStackFrame(Store OldStore,
31 StoreRef Store = StoreRef(OldStore, *this); local
39 Store = Bind(Store.getStore(), I->first, I->second);
42 return Store;
62 StoreRef StoreManager::BindDefault(Store store, const MemRegion *R, SVal V) {
506 Store stor
[all...]

Completed in 2323 milliseconds

123