Searched refs:entries (Results 1 - 21 of 21) sorted by relevance

/system/media/camera/docs/
H A Dmetadata_model_test.py36 combined_ent = [i for i in combined_children_namespace.entries]
46 self.assertIn(entry1, new_ins.entries)
47 self.assertIn(entry2, new_ins.entries)
83 self.assertIn(entry1, combined_kind.entries)
84 self.assertIn(entry2, combined_kind.entries)
116 combined_ent = [i for i in combined_children_kind.entries]
126 self.assertIn(entry1, new_ins.entries)
127 self.assertIn(entry2, new_ins.entries)
H A DCameraCaptureResultTest.mako18 * The key entries below this point are generated from metadata
H A Dmetadata_model.py342 # remove from parent's entries list
355 # After all entries/clones are inserted,
386 if p not in tag.entries:
396 if p not in type_node.entries:
406 # but can happen when importing obsolete CSV entries
537 # construct children entries
548 # doesnt construct the entries, so much as links them
551 entry_dict = self._dictionary_by_name(parent.entries)
564 if entry not in parent.entries:
590 entries
610 def entries(self): member in class:Tag
640 def entries(self): member in class:Typedef
786 def entries(self): member in class:Kind
885 def entries(self): member in class:InnerNamespace
[all...]
H A DCameraMetadataEnums.mako56 % for entry in filter_visibility(inner_namespace.entries, ('hidden','public')):
65 get_children_by_filtering_kind(section, xml_name, 'entries'), \
H A Dmetadata_helpers.py62 # find uniquely named entries (w/o recursing through inner namespaces)
65 Find all uniquely named entries, without recursing through inner namespaces.
74 This collapses multiple entries with the same fully qualified name into
75 one entry (e.g. if there are multiple entries in different kinds).
82 # remove the 'kinds' from the path between sec and the closest entries
87 for entry in i.entries:
130 def get_children_by_throwing_away_kind(node, member='entries'):
157 def get_children_by_filtering_kind(section, kind_name, member='entries'):
667 Determine if entries in this section have an applied visibility that's in
676 True if the section has any entries wit
[all...]
H A Dcamera_metadata_tags.mako71 * Main enum for defining camera metadata tags. New entries must always go
92 * Enumeration definitions for the various entries that need them
H A DCameraMetadataKeys.mako22 * The key entries below this point are generated from metadata
H A Dmetadata_template.mako59 % for entry in node.entries:
H A Dhtml.mako327 % for prop in tag.entries:
/system/core/libzipfile/
H A Dprivate.h36 Zipentry* entries; member in struct:Zipfile
H A Dzipfile.c33 Zipentry* entry = file->entries;
46 Zipentry* entry = file->entries;
135 Zipentry* entry = zip->entries;
153 *cookie = zip->entries;
H A Dcentraldir.c13 // central directory entries
231 // Loop through and read the central dir entries.
246 entry->next = file->entries;
247 file->entries = entry;
/system/extras/ext4_utils/
H A Dcontents.h36 u32 make_directory(u32 dir_inode_num, u32 entries, struct dentry *dentries,
H A Dmake_ext4fs.c114 int entries = 0; local
126 entries = scandir(full_path, &namelist, filter_dot, (void*)alphasort);
127 if (entries < 0) {
135 for (i = 0; i < entries; i++)
138 if (i == entries)
142 dentries = calloc(entries, sizeof(struct dentry));
146 for (i = 0; i < entries; i++) {
160 entries--;
214 entries--;
221 struct dentry *tmp = calloc(entries
[all...]
H A Dcontents.c43 static u32 dentry_size(u32 entries, struct dentry *dentries) argument
49 for (i = 0; i < entries; i++) {
89 /* Creates a directory structure for an array of directory entries, dentries,
95 u32 make_directory(u32 dir_inode_num, u32 entries, struct dentry *dentries, argument
107 blocks = DIV_ROUND_UP(dentry_size(entries, dentries), info.block_size);
154 for (i = 0; i < entries; i++) {
157 if (offset > len || (offset == len && i != entries - 1))
/system/extras/fatblock/
H A Dfatblock.h62 struct fat_dirent *entries; member in struct:dir
H A Dimport.c307 d->entries = malloc(sizeof(struct fat_dirent) * (count + (is_root ? 0 : 2)));
308 assert(d->entries);
313 ch_dirent = &d->entries[i + (is_root ? 0 : 2)];
328 fat_dirent_set(&d->entries[0],
331 out->dot_dot_dirent = &d->entries[0]; /* will set first_cluster */
333 fat_dirent_set(&d->entries[1],
H A Dread.c131 return buffer_read((char*)d->entries, d->size, buf, off, len);
/system/core/cpio/
H A Dmkbootfs.c169 int entries = 0; local
183 if (entries >= size) {
192 names[entries] = strdup(de->d_name);
193 if (names[entries] == NULL) {
198 ++entries;
201 qsort(names, entries, sizeof(char*), compare);
203 for (i = 0; i < entries; ++i) {
/system/core/fs_mgr/
H A Dfs_mgr.c303 int cnt, entries; local
320 entries = 0;
335 entries++;
338 if (!entries) {
339 ERROR("No entries found in fstab\n");
345 fstab->num_entries = entries;
372 if (cnt >= entries) {
373 ERROR("Tried to process more entries than counted\n");
585 /* Don't mount entries that are managed by vold */
590 /* Skip swap and raw partition entries suc
[all...]
/system/media/camera/src/
H A Dcamera_metadata.c61 * A packet of metadata. This is a list of entries, each of which may point to
80 * | (entry_capacity-entry_count) entries |
91 * In short, the entries and data are contiguous in memory after the metadata
374 camera_metadata_buffer_entry_t *entries = get_entries(metadata); local
378 if ((uintptr_t)&entries[i] != ALIGN_TO(&entries[i], ENTRY_ALIGNMENT)) {
381 __FUNCTION__, i, &entries[i], ENTRY_ALIGNMENT);
385 camera_metadata_buffer_entry_t entry = entries[i];
605 // Sorted entries, do a binary search
835 "%*sDumping camera metadata array: %d / %d entries, "
[all...]

Completed in 280 milliseconds