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

  /external/libunwind/src/
os-linux.c 41 struct map_info *cur_map; local
51 cur_map = map_alloc_info ();
52 if (cur_map == MAP_FAILED)
54 cur_map->next = map_list;
55 cur_map->start = start;
56 cur_map->end = end;
57 cur_map->offset = offset;
58 cur_map->load_base = 0;
59 cur_map->flags = flags;
60 cur_map->path = strdup (mi.path)
    [all...]
os-qnx.c 34 struct map_info *cur_map; local
40 cur_map = map_alloc_info ();
41 if (cur_map == NULL)
44 cur_map->next = *map_list;
45 cur_map->start = info->dlpi_addr + info->dlpi_phdr[i].p_vaddr;
46 cur_map->end = cur_map->start + info->dlpi_phdr[i].p_memsz;
47 cur_map->offset = info->dlpi_phdr[i].p_offset;
48 cur_map->path = strdup(info->dlpi_name);
49 mutex_init (&cur_map->ei_lock)
    [all...]
os-freebsd.c 138 cur_map = map_alloc_info ();
139 if (cur_map == NULL)
141 cur_map->next = map_list;
142 cur_map->start = kv->kve_start;
143 cur_map->end = kv->kv_end;
144 cur_map->offset = kv->kve_offset;
145 cur_map->path = strdup(kv->kve_path);
146 mutex_init (&cur_map->ei_lock);
147 cur_map->ei.size = 0;
148 cur_map->ei.image = NULL
    [all...]
os-hpux.c 84 map->end = cur_map->start + lmd.text_size;
88 mutex_init (&cur_map->ei_lock);
  /external/blktrace/btt/
mmap.c 36 static void *cur_map = MAP_FAILED; variable
83 if (cur_map != MAP_FAILED)
84 munmap(cur_map, len);
91 cur_map = mmap(NULL, len, PROT_READ, MAP_SHARED, fd,
93 if (cur_map == MAP_FAILED) {
125 if (cur_map != MAP_FAILED)
126 munmap(cur_map, len);
140 next_t = cur_map + (cur - cur_min);
  /external/libunwind/src/mi/
Lmap.c 45 map_cursor->cur_map = local_map_list;
103 struct map_info *map_info = map_cursor->cur_map;
132 map_cursor->cur_map = map_info->next;
map.c 58 map_cursor->cur_map = map_cursor->map_list;
65 cursor_map->cur_map = NULL;
71 struct map_info *map_info = map_cursor->cur_map;
83 map_cursor->cur_map = map_info->next;
  /external/libunwind/include/
libunwind-common.h 223 void *cur_map; member in struct:unw_map_cursor
  /art/dex2oat/linker/
image_test.h 285 for (std::unique_ptr<MemMap>& cur_map : cur_opened_dex_files_maps) {
286 opened_dex_files_maps.push_back(std::move(cur_map));

Completed in 365 milliseconds