Searched defs:entry (Results 1 - 25 of 33) sorted by relevance

12

/device/linaro/bootloader/arm-trusted-firmware/drivers/partition/
H A Dgpt.c35 int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry) argument
39 assert((gpt_entry != 0) && (entry != 0));
45 zeromem(entry, sizeof(partition_entry_t));
46 result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name);
50 entry->start = (uint64_t)gpt_entry->first_lba * PARTITION_BLOCK_SIZE;
51 entry->length = (uint64_t)(gpt_entry->last_lba -
H A Dpartition.c106 static int load_gpt_entry(uintptr_t image_handle, gpt_entry_t *entry) argument
111 assert(entry != NULL);
112 result = io_read(image_handle, (uintptr_t)entry, sizeof(gpt_entry_t),
121 gpt_entry_t entry; local
125 result = load_gpt_entry(image_handle, &entry);
127 result = parse_gpt_entry(&entry, &list.list[i]);
/device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
H A Dreaddir.c2 Get next entry in a directory.
58 * get next entry in a directory.
105 readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) argument
116 memcpy(entry, dp, (size_t)_DIRENT_SIZE(dp));
122 memcpy(entry, dp, (size_t)_DIRENT_SIZE(dp));
131 *result = entry;
/device/google/cuttlefish_common/guest/vsoc/lib/
H A Dgralloc_region_view.cpp71 // Find a free buffer entry of the appropriate size.
73 BufferEntry& entry = data()->buffers_table[idx]; local
74 if (entry.owned_by == VSOC_REGION_FREE && entry.buffer_size() == size) {
77 pointer_to_region_offset(&entry.owned_by),
79 entry.buffer_begin,
80 entry.buffer_end);
83 *begin_offset = entry.buffer_begin;
114 // Initialize the buffer entry and acquire ownership
135 // Increment buffer_count now that the entry ca
[all...]
/device/google/contexthub/firmware/os/inc/
H A Dsyscall.h65 } entry[]; member in struct:SyscallTable
/device/google/marlin/dataservices/datatop/src/
H A Ddatatop_cpu_stats_poll.c65 struct dirent *entry; local
85 while ((entry = readdir(dp))) {
86 if (stat(entry->d_name, &s)) {
91 if (entry->d_name[0] == 'c' &&
92 entry->d_name[1] == 'p' &&
93 entry->d_name[2] == 'u' &&
94 (isdigit(entry->d_name[3]))) {
H A Ddatatop_gen_poll.c224 struct dirent *entry; local
242 while ((entry = readdir(dp))) {
243 if (stat(entry->d_name, &s)) {
248 if (strcmp(".", entry->d_name) != 0 &&
249 strcmp("..", entry->d_name) != 0 &&
252 dpg_construction(dir, entry->d_name);
254 } else if (strcmp(".", entry->d_name) != 0 &&
255 strcmp("..", entry->d_name) != 0 &&
257 int nd_len = strlen(dir) + strlen(entry->d_name) + 2;
260 strlcat(newdir, entry
[all...]
/device/generic/goldfish/camera/fake-pipeline2/
H A DJpegCompressor.cpp138 camera_metadata_entry_t entry; local
159 entry = mSettings.find(ANDROID_JPEG_THUMBNAIL_SIZE);
160 if (entry.count > 0) {
161 thumbWidth = entry.data.i32[0];
162 thumbHeight = entry.data.i32[1];
164 entry = mSettings.find(ANDROID_JPEG_THUMBNAIL_QUALITY);
165 if (entry.count > 0) {
166 thumbJpegQuality = entry.data.u8[0];
176 entry = mSettings.find(ANDROID_JPEG_QUALITY);
177 if (entry
[all...]
/device/google/contexthub/firmware/os/core/
H A DeventQ.c57 static inline void evtListDel(struct EvtList *entry) argument
59 __evtListDel(entry->prev, entry->next);
60 entry->next = entry->prev = NULL;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Ddynload_aix.c26 void *entry; member in struct:Module
92 modptr->entry = ldiptr->ldinfo_dataorg;
H A Dsymtable.c88 "<symtable entry %.100s(%ld), line %d>",
123 "symtable entry",
297 "unknown symbol table entry");
366 about the new name. For example, a new global will add an entry to
598 ste -- current symtable entry (input/output)
616 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,
696 PySTEntryObject* entry; local
698 entry = (PySTEntryObject*)c;
699 if (!analyze_child_block(entry, newbound, newfree, newglobal,
702 if (entry
732 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, PyObject *global, PyObject* child_free) argument
[all...]
/device/google/cuttlefish_common/guest/hals/camera/
H A DExif.cpp38 #include <libexif/exif-entry.h>
66 // Remove an existing EXIF entry from |exifData| if it exists. This is useful
70 ExifEntry* entry = exif_content_get_entry(exifData->ifd[ifd], local
72 if (entry) {
73 exif_content_remove_entry(exifData->ifd[ifd], entry);
81 ExifEntry* entry = exif_entry_new_mem(mem); local
84 entry->data = reinterpret_cast<unsigned char*>(exif_mem_alloc(mem, size));
85 entry->size = size;
86 entry->tag = static_cast<ExifTag>(tag);
87 entry
104 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_RATIONAL, N); local
141 ExifEntry* entry = allocateEntry(tag, format, size); local
175 ExifEntry* entry = exif_entry_new(); local
191 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_LONG, 1); local
[all...]
H A DEmulatedFakeCamera2.cpp1255 camera_metadata_entry_t entry; local
1258 find_camera_metadata_entry(mRequest, ANDROID_SENSOR_TIMESTAMP, &entry);
1265 captureTime = entry.data.i64[0];
1269 find_camera_metadata_entry(mRequest, ANDROID_REQUEST_FRAME_COUNT, &entry);
1276 frameNumber = *entry.data.i32;
1279 &entry);
1291 if (*entry.data.u8 == ANDROID_REQUEST_METADATA_MODE_FULL) {
1420 camera_metadata_entry_t entry; local
1422 &entry);
1428 if (entry
[all...]
/device/linaro/bootloader/arm-trusted-firmware/drivers/io/
H A Dio_fip.c36 fip_toc_entry_t entry; member in struct:__anon2673
191 * offset zero, so this entry should never be zero for an active file.
195 if (current_file.entry.offset_address != 0) {
220 (uintptr_t)&current_file.entry,
221 sizeof(current_file.entry),
224 if (compare_uuids(&current_file.entry.uuid,
233 } while (compare_uuids(&current_file.entry.uuid, &uuid_null) != 0);
237 * the file position to 0. The 'current_file.entry' holds the
244 current_file.entry.offset_address = 0;
262 *length = ((file_state_t *)entity->info)->entry
[all...]
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
H A Ddig64.h89 struct dig64_hcdp_entry entry[1]; member in struct:dig64_hcdp_table
/device/generic/goldfish/camera/
H A DExif.cpp28 #include <libexif/exif-entry.h>
58 // Remove an existing EXIF entry from |exifData| if it exists. This is useful
62 ExifEntry* entry = exif_content_get_entry(exifData->ifd[ifd], local
64 if (entry) {
65 exif_content_remove_entry(exifData->ifd[ifd], entry);
73 ExifEntry* entry = exif_entry_new_mem(mem); local
76 entry->data = reinterpret_cast<unsigned char*>(exif_mem_alloc(mem, size));
77 entry->size = size;
78 entry->tag = static_cast<ExifTag>(tag);
79 entry
96 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_RATIONAL, N); local
133 ExifEntry* entry = allocateEntry(tag, format, size); local
167 ExifEntry* entry = exif_entry_new(); local
183 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_LONG, 1); local
200 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_SHORT, 1); local
373 camera_metadata_ro_entry_t entry; local
[all...]
H A DEmulatedFakeCamera2.cpp1277 camera_metadata_entry_t entry; local
1281 &entry);
1288 captureTime = entry.data.i64[0];
1293 &entry);
1300 frameNumber = *entry.data.i32;
1304 &entry);
1316 if (*entry.data.u8 == ANDROID_REQUEST_METADATA_MODE_FULL) {
1448 camera_metadata_entry_t entry; local
1451 &entry);
1457 if (entry
[all...]
H A DEmulatedQemuCamera3.cpp135 * ignore this entry.
826 camera_metadata_entry_t entry; local
828 entry = settings.find(ANDROID_SENSOR_EXPOSURE_TIME);
829 exposureTime = (entry.count > 0) ?
830 entry.data.i64[0] :
837 entry = settings.find(ANDROID_SENSOR_FRAME_DURATION);
838 frameDuration = (entry.count > 0) ?
839 entry.data.i64[0] :
1568 camera_metadata_ro_entry_t entry; local
1569 get_camera_metadata_ro_entry(previewRequest, i, &entry);
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dst.c264 st_table_entry *entry;\
270 entry = alloc(st_table_entry);\
271 if (entry == NULL) {\
275 entry->hash = hash_val;\
276 entry->key = key;\
277 entry->record = value;\
278 entry->next = table->bins[bin_pos];\
279 table->bins[bin_pos] = entry;\
352 st_table_entry *ptr, *entry; local
373 entry
[all...]
/device/google/contexthub/util/nanoapp_cmd/
H A Dnanoapp_cmd.c263 char entry[MAX_APP_NAME_LEN+1]; local
266 sscanf(line, "%" STRINGIFY(MAX_APP_NAME_LEN) "s %" PRIx64 " %" PRIx32 "\n", entry, appId, &appVersion);
268 if (strncmp(entry, name, MAX_APP_NAME_LEN) == 0) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dreadline.c359 /* _py_free_history_entry: Utility function to free a history entry. */
363 /* Readline version >= 5.0 introduced a timestamp field into the history entry
369 _py_free_history_entry(HIST_ENTRY *entry) argument
371 histdata_t data = free_history_entry(entry);
380 _py_free_history_entry(HIST_ENTRY *entry) argument
382 if (entry->line)
383 free((void *)entry->line);
384 if (entry->data)
385 free(entry->data);
386 free(entry);
395 HIST_ENTRY *entry; local
[all...]
H A D_lsprof.c90 PY_LONG_LONG tt; /* total time in this entry */
91 PY_LONG_LONG it; /* inline time in this entry (not in subcalls) */
261 getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry) argument
264 (void *)entry);
268 newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry) argument
276 self->header.key = (void *)entry;
295 ProfilerEntry *entry = (ProfilerEntry*) header; local
296 RotatingTree_Enum(entry->calls, freeSubEntry, NULL);
297 Py_DECREF(entry->userObj);
298 free(entry);
320 initContext(ProfilerObject *pObj, ProfilerContext *self, ProfilerEntry *entry) argument
340 Stop(ProfilerObject *pObj, ProfilerContext *self, ProfilerEntry *entry) argument
550 ProfilerEntry *entry = (ProfilerEntry*) sentry->header.key; local
569 ProfilerEntry *entry = (ProfilerEntry*) node; local
[all...]
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables_v2/
H A Dxlat_tables_internal.c217 * on the previous value in that entry and information about the region being
225 /* Write a block (or page, if in level 3) entry. */
229 * Create a new table and write a table entry pointing to it. Recurse
235 * There is a table descriptor in this entry, read it and recurse into
260 uintptr_t table_idx_end_va; /* End VA of this entry */
399 * Table entry is covered by region
402 * This means that this table entry can describe the whole
435 * entry.
466 * Region partially covers table entry
469 * This means that this table entry ca
1417 uint64_t *entry; local
1560 uint64_t *entry; local
1613 uint64_t *entry; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dsymtable.c90 "<symtable entry %.100s(%ld), line %d>",
125 "symtable entry",
299 "unknown symbol table entry");
368 about the new name. For example, a new global will add an entry to
600 ste -- current symtable entry (input/output)
618 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,
698 PySTEntryObject* entry; local
700 entry = (PySTEntryObject*)c;
701 if (!analyze_child_block(entry, newbound, newfree, newglobal,
704 if (entry
734 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, PyObject *global, PyObject* child_free) argument
[all...]
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DGLClientState.cpp971 CubeMapDef entry; local
972 entry.id = getBoundTexture(GL_TEXTURE_2D);
973 entry.target = target;
974 entry.level = level;
975 entry.internalformat = internalformat;
976 m_cubeMapDefs.insert(entry);

Completed in 256 milliseconds

12