Home
last modified time | relevance | path

Searched refs:Entry (Results 1 – 21 of 21) sorted by relevance

/system/core/libcutils/
Dhashmap.cpp26 typedef struct Entry Entry; typedef
27 struct Entry { struct
31 Entry* next; argument
35 Entry** buckets;
61 map->buckets = static_cast<Entry**>(calloc(map->bucketCount, sizeof(Entry*))); in hashmapCreate()
105 Entry** newBuckets = static_cast<Entry**>(calloc(newBucketCount, sizeof(Entry*))); in expandIfNecessary()
114 Entry* entry = map->buckets[i]; in expandIfNecessary()
116 Entry* next = entry->next; in expandIfNecessary()
142 Entry* entry = map->buckets[i]; in hashmapFree()
144 Entry* next = entry->next; in hashmapFree()
[all …]
/system/core/libutils/include/utils/
DLruCache.h67 class Entry final : public KeyedEntry {
71 Entry* parent;
72 Entry* child;
74Entry(TKey _key, TValue _value) : key(_key), value(_value), parent(nullptr), child(nullptr) { in Entry() function
103 void attachToCache(Entry& entry);
104 void detachFromCache(Entry& entry);
114 Entry* mOldest;
115 Entry* mYoungest;
148 return reinterpret_cast<Entry *>(*mIterator)->value; in value()
197 Entry *entry = reinterpret_cast<Entry*>(*find_result); in get()
[all …]
/system/timezone/input_tools/android/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
DCountryZoneUsage.java28 private final Map<String, Entry> zoneIdEntryMap = new HashMap<>();
43 zoneIdEntryMap.put(zoneId, new Entry(zoneId, notUsedAfterInstant, notUsedReplacementId)); in addEntry()
51 Entry entry = zoneIdEntryMap.get(zoneId); in getNotUsedAfterInstant()
60 Entry entry = zoneIdEntryMap.get(zoneId); in getNotUsedReplacementId()
68 private static class Entry { class in CountryZoneUsage
73 Entry(String zoneId, Instant notUsedAfter, String notUsedReplacementId) { in Entry() method in CountryZoneUsage.Entry
DCountryZoneTree.java399 for (Map.Entry<ZonePeriodsKey, List<ZoneInfo>> newSetEntry : newSetsMap.entrySet()) { in growTree()
/system/media/camera/docs/
Dmetadata_model_test.py16 entry1 = Entry(name="entry1", type="int32", kind="static",
18 entry2 = Entry(name="entry2", type="int32", kind="static",
20 entry3 = Entry(name="entry3", type="int32", kind="static",
62 entry1 = Entry(name="entry1", type="int32", kind="static",
64 entry2 = Entry(name="entry2", type="int32", kind="static",
96 entry1 = Entry(name="entry1", type="int32", kind="static",
98 entry2 = Entry(name="entry2", type="int32", kind="static",
100 entry3 = Entry(name="entry3", type="int32", kind="static",
Dhtml.mako56 /* Entry flair */
60 /* Entry type flair */
76 /* Entry tags flair */
79 /* Entry details (full docs) flair */
83 /* Entry spacer flair */
DACameraMetadata.mako22 …% if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == kind_name) and…
Dmetadata_model.py302 e = Entry(**entry)
1103 class Entry(Node): class
1528 class Clone(Entry):
1610 class MergedEntry(Entry):
DCameraMetadataEnums.mako63 …% if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
DCameraMetadataKeys.mako79 …% if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
Dmetadata_helpers.py459 if not isinstance(entry, metadata_model.Entry):
/system/iorap/src/prefetcher/
Dsession.h139 struct Entry { struct
145 constexpr bool operator==(const Entry& other) const { argument
151 constexpr bool operator!=(const Entry& other) const {
155 friend std::ostream& operator<<(std::ostream& os, const Entry& entry);
159 Entry entry;
175 friend std::ostream& operator<<(std::ostream& os, const SessionDirect::Entry& entry);
178 std::ostream& operator<<(std::ostream& os, const SessionDirect::Entry& entry);
Dsession.cc100 std::ostream& operator<<(std::ostream& os, const SessionDirect::Entry& entry) { in operator <<()
200 Entry entry{path_id, kind, length, offset}; in ReadAhead()
286 Entry entry{path_id, kind, length, offset}; in UnreadAhead()
460 const Entry& entry = entry_mapping.entry; in Dump()
549 const Entry& entry = entry_mapping.entry; in Dump()
/system/core/init/
Dkeychords.h67 struct Entry { struct
68 Entry();
89 std::map<const std::vector<int>, Entry> entries_; argument
Dkeychords.cpp111 Keychords::Entry::Entry() : notified(false) {} in Entry() function in android::init::Keychords::Entry
283 entries_.try_emplace(keycodes, Entry()); in Register()
/system/media/audio_utils/include/audio_utils/
DErrorLog.h161 struct Entry { struct
162 Entry() in Entry() argument
189 std::vector<Entry> mEntries; // circular buffer of error entries. argument
/system/timezone/input_tools/android/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
DBackwardFile.java89 for (Map.Entry<String, String> entry : links.entrySet()) { in getAllAlternativeIds()
/system/timezone/input_tools/android/tzids/src/main/java/com/android/timezone/tzids/
DTimeZoneIds.java224 for (Map.Entry<String, String> entry : sourceMap.entrySet()) { in putAllSafely()
/system/teeui/tools/framebufferizer/src/com/android/framebufferizer/utils/
DFrameBufferBuffer.java329 Map.Entry<String, Object> element = (Map.Entry) iterator.next(); in setDefaultValues()
/system/logging/logd/
DREADME.replay.md24 1. Log Entry Count
/system/memory/libmemunreachable/
DREADME.md77 - `MemUnreachable.cpp`: Entry points, implements the sequencing described above.