HomeSort by relevance Sort by last modified time
    Searched defs:cur_entry (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 87 ReportStack *cur_entry = NewReportStackEntry(addr_frames[i]); local
88 CHECK(cur_entry);
91 top = cur_entry;
93 bottom->next = cur_entry;
94 bottom = cur_entry;
  /external/grub/stage2/
cmdline.c 186 char *cur_entry = script; local
213 /* Copy the first string in CUR_ENTRY to HEAP. */
214 old_entry = cur_entry;
215 while (*cur_entry++)
218 grub_memmove (heap, old_entry, (int) cur_entry - (int) old_entry);
stage2.c 243 char *cur_entry = 0; local
351 cur_entry = NULL;
518 cur_entry = get_entry (menu_entries,
524 grub_memmove (cur_entry + 2, cur_entry,
525 ((int) heap) - ((int) cur_entry));
527 cur_entry[0] = ' ';
528 cur_entry[1] = 0;
540 grub_memmove (cur_entry, ptr,
542 heap -= (((int) ptr) - ((int) cur_entry));
    [all...]
  /device/generic/goldfish/camera/
EmulatedCameraFactory.cpp 364 char* cur_entry = camera_list; local
365 while (cur_entry != NULL && *cur_entry != '\0' && index < num) {
368 char* next_entry = strchr(cur_entry, '\n');
375 char* name_start = strstr(cur_entry, lListNameToken);
376 char* dim_start = strstr(cur_entry, lListDimsToken);
377 char* dir_start = strstr(cur_entry, lListDirToken);
414 ALOGW("%s: Bad camera information: %s", __FUNCTION__, cur_entry);
417 cur_entry = next_entry;
  /external/qemu/hw/
fw_cfg.c 50 uint16_t cur_entry; member in struct:_FWCfgState
56 int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
57 FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
61 if (s->cur_entry & FW_CFG_WRITE_CHANNEL && s->cur_offset < e->len) {
76 s->cur_entry = FW_CFG_INVALID;
79 s->cur_entry = key;
90 int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
91 FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
94 if (s->cur_entry == FW_CFG_INVALID || !e->data || s->cur_offset >= e->len)
171 qemu_put_be16s(f, &s->cur_entry);
    [all...]

Completed in 133 milliseconds