Searched refs:Store (Results 1 - 25 of 272) sorted by relevance

1234567891011

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java5 public interface Store interface
H A DCollectionStore.java12 implements Store
/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; }
H A DStore.h1 //== Store.h - Interface for maps from Locations to Values ------*- C++ -*--==//
10 // This file defined the types Store and StoreManager.
61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V);
77 virtual StoreRef killBinding(Store ST, Loc L) = 0;
144 virtual StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx,
147 virtual bool includedInBindings(Store store,
151 /// the specified Store object.
152 virtual void incrementReferenceCount(Store stor
[all...]
/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 Dcert_store_impl.cc24 return store_.Store(cert, process_id);
H A Dsigned_certificate_timestamp_store_impl.h23 virtual int Store(
/external/chromium/chrome/browser/ui/gtk/
H A Dfocus_store_gtk.h23 void Store(GtkWidget* widget);
H A Dfocus_store_gtk.cc20 void FocusStoreGtk::Store(GtkWidget* widget) { function in class:FocusStoreGtk
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_settings_cache.h26 bool Store(const enterprise_management::PolicyData &policy,
H A Ddevice_settings_cache_unittest.cc34 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_));
49 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_));
/external/chromium_org/components/policy/core/common/cloud/
H A Dresource_cache_unittest.cc46 // Store some data and load it.
47 EXPECT_TRUE(cache.Store(kKey1, kSubA, kData0));
51 // Store more data in another subkey.
52 EXPECT_TRUE(cache.Store(kKey1, kSubB, kData1));
55 EXPECT_TRUE(cache.Store(kKey2, kSubA, kData0));
56 EXPECT_TRUE(cache.Store(kKey2, kSubB, kData1));
57 EXPECT_TRUE(cache.Store(kKey3, kSubA, kData0));
58 EXPECT_TRUE(cache.Store(kKey3, kSubB, kData1));
67 // Store more subkeys.
68 EXPECT_TRUE(cache.Store(kKey
[all...]
H A Dmock_user_cloud_policy_store.h18 MOCK_METHOD1(Store, void(const enterprise_management::PolicyFetchResponse&));
H A Dcloud_policy_store.cc24 void CloudPolicyStore::Store( function in class:policy::CloudPolicyStore
28 Store(policy);
H A Dcloud_policy_store.h41 // Store cannot accept policy (e.g. non-enterprise device).
84 // Store a new policy blob. Pending load/store operations will be canceled.
91 void Store(
95 virtual void Store(
/external/chromium_org/ui/base/gtk/
H A Dfocus_store_gtk.h24 void Store(GtkWidget* widget);
/external/chromium_org/net/disk_cache/
H A Dmapped_file.cc16 bool MappedFile::Store(const FileBlock* block) { function in class:disk_cache::MappedFile
28 bool MappedFile::Store(const FileBlock* block, function in class:disk_cache::MappedFile
H A Dmapped_file.h39 bool Store(const FileBlock* block);
41 // Asynchronous versions of Load/Store, following the semantics of File::Read
44 bool Store(const FileBlock* block, FileIOCallback* callback, bool* completed);
H A Dstorage_block.h76 bool Store();
78 bool Store(FileIOCallback* callback, bool* completed);
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_temp_storage.h26 static bool Store(const std::string& name,
/external/chromium/net/disk_cache/
H A Dmapped_file.h38 bool Store(const FileBlock* block);
/external/chromium_org/content/public/browser/
H A Dsigned_certificate_timestamp_store.h38 virtual int Store(net::ct::SignedCertificateTimestamp* sct,
/external/qemu-pc-bios/bochs/bios/
H A Dacpi-dsdt.dsl111 Store(ShiftLeft(1, nr), B0EJ) \
330 Store (\_SB.PCI0.PX13.DRSA, Local0)
359 Store (\_SB.PCI0.PX13.DRSC, Local0)
387 Store (\_SB.PCI0.PX13.DRSC, Local0)
449 Store (0x0B, Local0)
452 Store (0x09, Local0)
468 Store (PRQ0, Local0)
475 Store (Zero, TMP)
484 Store (Local0, PRQ0)
496 Store (
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp221 StoreInst *Store = 0; local
223 for (; !Store || !SawRelease; ++I) {
239 if (Store) {
247 Store = dyn_cast<StoreInst>(Inst);
248 if (!Store || !Store->isSimple()) return;
249 if (Store->getPointerOperand() != Loc.Ptr) return;
253 Value *New = StripPointerCastsAndObjCCalls(Store->getValueOperand());
256 I = Store;
273 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509Store.java4 import org.bouncycastle.util.Store;
12 implements Store

Completed in 1398 milliseconds

1234567891011