Searched defs:entries (Results 1 - 9 of 9) sorted by relevance

/system/core/libzipfile/
H A Dprivate.h36 Zipentry* entries; member in struct:Zipfile
/system/core/cpio/
H A Dmkbootfs.c170 int entries = 0; local
184 if (entries >= size) {
193 names[entries] = strdup(de->d_name);
194 if (names[entries] == NULL) {
199 ++entries;
202 qsort(names, entries, sizeof(char*), compare);
204 for (i = 0; i < entries; ++i) {
/system/core/fastbootd/commands/
H A Dpartitions.h71 struct GPT_entry_raw *entries; member in struct:GPT_entry_table
100 struct GPT_entry_raw *entries; member in struct:GPT_content
H A Dpartitions.c120 table->partition_table_size = ROUND_UP(content->header.entries_count * sizeof(*table->entries),
126 D(ERR, "unable to map entries");
130 table->entries = (struct GPT_entry_raw *) table->entries_map.ptr;
139 // Mapping secondary entries table
316 struct GPT_entry_raw *entries = table->entries; local
319 if (!entries[i].type_guid[0]) {
322 memcpy(&entries[i], entry, sizeof(entries[i]));
351 (char *) table->entries[curren
[all...]
/system/core/fs_mgr/
H A Dfs_mgr_fstab.c182 int cnt, entries; local
199 entries = 0;
213 entries++;
216 if (!entries) {
217 ERROR("No entries found in fstab\n");
223 fstab->num_entries = entries;
249 if (cnt >= entries) {
250 ERROR("Tried to process more entries than counted\n");
/system/extras/ext4_utils/
H A Dcontents.c47 static u32 dentry_size(u32 entries, struct dentry *dentries) argument
53 for (i = 0; i < entries; i++) {
93 /* Creates a directory structure for an array of directory entries, dentries,
99 u32 make_directory(u32 dir_inode_num, u32 entries, struct dentry *dentries, argument
111 blocks = DIV_ROUND_UP(dentry_size(entries, dentries), info.block_size);
158 for (i = 0; i < entries; i++) {
161 if (offset > len || (offset == len && i != entries - 1))
H A Dmake_ext4fs.c132 int entries = 0; local
144 entries = scandir(full_path, &namelist, filter_dot, (void*)alphasort);
145 if (entries < 0) {
153 for (i = 0; i < entries; i++)
156 if (i == entries)
160 dentries = calloc(entries, sizeof(struct dentry));
164 for (i = 0; i < entries; i++) {
178 entries--;
236 entries--;
243 struct dentry *tmp = calloc(entries
[all...]
/system/media/camera/docs/
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...]
/system/media/camera/src/
H A Dcamera_metadata.c57 * A packet of metadata. This is a list of entries, each of which may point to
76 * | (entry_capacity-entry_count) entries |
87 * In short, the entries and data are contiguous in memory after the metadata
388 camera_metadata_buffer_entry_t *entries = get_entries(metadata); local
392 if ((uintptr_t)&entries[i] != ALIGN_TO(&entries[i], ENTRY_ALIGNMENT)) {
395 __FUNCTION__, i, &entries[i], ENTRY_ALIGNMENT);
399 camera_metadata_buffer_entry_t entry = entries[i];
630 // Sorted entries, do a binary search
857 "%*sDumping camera metadata array: %" PRIu32 " / %" PRIu32 " entries, "
[all...]

Completed in 240 milliseconds