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

  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 67 ReportStack *cur_entry = NewReportStackEntry(addr_frames[i]); local
68 CHECK(cur_entry);
71 top = cur_entry;
73 bottom->next = cur_entry;
74 bottom = cur_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...]
  /development/tools/emulator/system/camera/
EmulatedCameraFactory.cpp 319 char* cur_entry = camera_list; local
320 while (cur_entry != NULL && *cur_entry != '\0' && index < num) {
323 char* next_entry = strchr(cur_entry, '\n');
330 char* name_start = strstr(cur_entry, lListNameToken);
331 char* dim_start = strstr(cur_entry, lListDimsToken);
332 char* dir_start = strstr(cur_entry, lListDirToken);
369 ALOGW("%s: Bad camera information: %s", __FUNCTION__, cur_entry);
372 cur_entry = next_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...]
  /external/chromium/base/
file_util_posix.cc 698 DirectoryEntryInfo* cur_entry = &directory_entries_[current_directory_entry_];
699 memcpy(&(info->stat), &(cur_entry->stat), sizeof(info->stat));
700 info->filename.assign(cur_entry->filename.value());

Completed in 334 milliseconds