Searched refs:Entry (Results 1 - 8 of 8) sorted by relevance

/system/core/include/utils/
H A DLruCache.h81 struct Entry { struct in class:android::LruCache
84 Entry* parent;
85 Entry* child;
87 Entry(TKey key_, TValue value_) : key(key_), value(value_), parent(NULL), child(NULL) { function in struct:android::LruCache::Entry
92 void attachToCache(Entry& entry);
93 void detachFromCache(Entry& entry);
96 UniquePtr<BasicHashtable<TKey, Entry> > mTable;
98 Entry* mOldest;
99 Entry* mYoungest;
107 mNullValue(NULL), mTable(new BasicHashtable<TKey, Entry>), mYounges
[all...]
/system/core/libcutils/
H A Dhashmap.c26 typedef struct Entry Entry; typedef in typeref:struct:Entry
27 struct Entry { struct
31 Entry* next;
35 Entry** buckets;
61 map->buckets = calloc(map->bucketCount, sizeof(Entry*));
106 Entry** newBuckets = calloc(newBucketCount, sizeof(Entry*));
115 Entry* entry = map->buckets[i];
117 Entry* nex
[all...]
/system/media/camera/docs/
H A 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",
H A DCameraMetadataEnums.mako51 % if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
H A DCameraMetadataKeys.mako65 % if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
H A Dhtml.mako53 /* Entry flair */
56 /* Entry type flair */
67 /* Entry visibility flair */
69 /* Entry tags flair */
H A Dmetadata_helpers.py55 entry: an Entry or Clone node
359 if not isinstance(entry, metadata_model.Entry):
360 raise ValueError("Expected entry to be an instance of Entry")
447 entry: an Entry node
601 enum: An enum-typed Entry node
694 entries: An iterable of Entry nodes
698 An iterable of Entry nodes
H A Dmetadata_model.py24 Entry: A node corresponding to <entry> elements.
212 self._entries_ordered = [] # list of ordered Entry/Clone instances
296 Entry#__init__ for the keys required/optional.
302 e = Entry(**entry)
359 Generate the graph recursively, after which all Entry nodes will be
770 entries: A sequence of Entry/Clone children.
870 entries: A sequence of Entry/Clone children.
977 parent: An edge to the parent, always an Entry instance.
1001 class Entry(Node): class in inherits:Node
1031 tags: A sequence of Tag nodes associated with this Entry
[all...]

Completed in 113 milliseconds