HomeSort by relevance Sort by last modified time
    Searched defs:CacheEntry (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
MappedBlockStream.h 60 typedef MutableArrayRef<uint8_t> CacheEntry;
62 mutable DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/ArpDxe/
ArpMain.c 142 ARP_CACHE_ENTRY *CacheEntry;
186 CacheEntry = ArpFindDeniedCacheEntry (
192 if (CacheEntry == NULL) {
196 CacheEntry = ArpFindNextCacheEntryInTable (
205 if ((CacheEntry != NULL) && !Overwrite) {
213 if ((CacheEntry == NULL) && (TargetSwAddress != NULL)) {
217 CacheEntry = ArpFindNextCacheEntryInTable (
226 if (CacheEntry != NULL) {
230 RemoveEntryList (&CacheEntry->List);
235 CacheEntry = ArpAllocCacheEntry (Instance);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Icmp.c 105 IP4_ROUTE_CACHE_ENTRY *CacheEntry;
140 CacheEntry = Ip4FindRouteCache (Ip4Instance->RouteTable, Dst, Src);
146 if ((CacheEntry != NULL) && (NTOHL (Head->Src) == CacheEntry->NextHop)) {
147 CacheEntry->NextHop = Gateway;
Ip4Output.c 228 IP4_ROUTE_CACHE_ENTRY *CacheEntry;
312 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src);
314 CacheEntry = Ip4Route (IpInstance->RouteTable, Head->Dst, Head->Src);
319 if (CacheEntry == NULL) {
320 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src);
324 if (CacheEntry == NULL) {
328 GateWay = CacheEntry->NextHop;
329 Ip4FreeRouteCacheEntry (CacheEntry);
  /frameworks/base/tools/aapt/
ResourceIdCache.cpp 21 struct CacheEntry {
26 CacheEntry() {}
27 CacheEntry(const android::String16& name, uint32_t resId) : hashedName(name), id(resId) { }
30 static std::map< uint32_t, CacheEntry > mIdMap;
64 std::map<uint32_t, CacheEntry>::iterator item = mIdMap.find(hashcode);
92 mIdMap[hashcode] = CacheEntry(hashedName, resId);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleObjectCache.java 20 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
28 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
35 CacheEntry<K, V> entry = _map.get(key);
47 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
65 CacheEntry<K, V> entry;
66 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
77 private static class CacheEntry<K, V> extends SoftReference<V> {
80 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleObjectCache.java 16 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
24 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
31 CacheEntry<K, V> entry = _map.get(key);
43 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
61 CacheEntry<K, V> entry;
62 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
73 private static class CacheEntry<K, V> extends SoftReference<V> {
76 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleObjectCache.java 16 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
24 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
31 CacheEntry<K, V> entry = _map.get(key);
43 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
61 CacheEntry<K, V> entry;
62 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
73 private static class CacheEntry<K, V> extends SoftReference<V> {
76 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
  /frameworks/base/libs/hwui/pipeline/skia/
VectorDrawableAtlas.h 113 struct CacheEntry {
114 CacheEntry(const SkRect& newVDrect, const SkRect& newRect,
138 std::list<CacheEntry>::iterator eraseIt;
154 std::list<CacheEntry> mRects;
193 static bool compareCacheEntry(const CacheEntry& first, const CacheEntry& second);
  /frameworks/native/opengl/libs/EGL/
BlobCache.h 143 // A CacheEntry is a single key/value pair in the cache.
144 class CacheEntry {
146 CacheEntry();
147 CacheEntry(const std::shared_ptr<Blob>& key, const std::shared_ptr<Blob>& value);
148 CacheEntry(const CacheEntry& ce);
150 bool operator<(const CacheEntry& rhs) const;
151 const CacheEntry& operator=(const CacheEntry&);
240 std::vector<CacheEntry> mCacheEntries
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
AbstractCache.java 31 private final HashMap<K, CacheEntry<V>> mCacheMap;
34 mCacheMap = new HashMap<K, CacheEntry<V>>();
52 CacheEntry<V> cacheEntry = new CacheEntry<V>();
53 cacheEntry.value = value;
54 mCacheMap.put(key, cacheEntry);
70 CacheEntry<V> cacheEntry = mCacheMap.get(key);
71 if (cacheEntry != null)
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleObjectCache.java 40 private ConcurrentMap<K, CacheEntry<K, V>> map;
55 CacheEntry<K, V> entry = map.get(key);
69 CacheEntry<K, V> newEntry = new CacheEntry<>(key, newVal, queue);
86 CacheEntry<K, V> entry = new CacheEntry<>(key, value, queue);
87 CacheEntry<K, V> oldEntry = map.put(key, entry);
93 CacheEntry<K, V> entry;
94 while ((entry = (CacheEntry<K, V>)queue.poll()) != null) {
105 private static class CacheEntry<K, V> extends SoftReference<V>
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/util/
AbstractCache.java 29 private final SimpleArrayMap<K, CacheEntry<V>> mCacheMap;
32 mCacheMap = new SimpleArrayMap<K, CacheEntry<V>>();
50 CacheEntry<V> cacheEntry = new CacheEntry<V>();
51 cacheEntry.value = value;
52 mCacheMap.put(key, cacheEntry);
68 CacheEntry<V> cacheEntry = mCacheMap.get(key);
69 if (cacheEntry != null)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
SourcePathCache.java 88 CacheEntry entry = (CacheEntry) m_packageCache.get (packageVMName);
92 entry = new CacheEntry (m_sourcepath.length);
125 private static final class CacheEntry
127 CacheEntry (final int size)
218 private final Map /* packageVMName:String->CacheEntry */ m_packageCache; // never null
  /frameworks/base/services/core/java/com/android/server/wm/
TaskSnapshotCache.java 38 private final ArrayMap<Integer, CacheEntry> mRunningCache = new ArrayMap<>();
46 final CacheEntry entry = mRunningCache.get(task.mTaskId);
52 mRunningCache.put(task.mTaskId, new CacheEntry(snapshot, task.getTopChild()));
63 final CacheEntry entry = mRunningCache.get(taskId);
112 final CacheEntry entry = mRunningCache.get(taskId);
124 final CacheEntry entry = mRunningCache.valueAt(i);
131 private static final class CacheEntry {
139 CacheEntry(TaskSnapshot snapshot, AppWindowToken topApp) {
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_Conntrack_NATApp.cpp 918 void NatApp::CacheEntry(const nat_table_entry *rule)
  /packages/apps/Email/provider_src/com/android/email/mail/internet/
AuthenticationCache.java 26 private final Map<Long, CacheEntry> mCache;
29 private class CacheEntry {
30 CacheEntry(long accountId, String providerId, String accessToken, String refreshToken,
56 mCache = new HashMap<Long, CacheEntry>();
67 CacheEntry entry = null;
85 CacheEntry entry = getEntry(context, account);
92 private CacheEntry getEntry(Context context, Account account) {
93 CacheEntry entry;
100 entry = new CacheEntry(account.mId, credential.mProviderId, credential.mAccessToken,
109 entry = new CacheEntry(account.mId, credential.mProviderId, credential.mAccessToken
    [all...]

Completed in 1044 milliseconds

1 2 3 4