Searched refs:cur_map (Results 1 - 8 of 8) sorted by relevance

/external/libunwind/src/
H A Dos-linux.c40 struct map_info *cur_map; local
47 cur_map = map_alloc_info ();
48 if (cur_map == MAP_FAILED)
50 cur_map->next = map_list;
51 cur_map->start = start;
52 cur_map->end = end;
53 cur_map->offset = offset;
54 cur_map->flags = flags;
55 cur_map->path = strdup (mi.path);
56 mutex_init (&cur_map
[all...]
H A Dos-qnx.c34 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
[all...]
H A Dos-freebsd.c138 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
[all...]
H A Dos-hpux.c84 map->end = cur_map->start + lmd.text_size;
88 mutex_init (&cur_map->ei_lock);
/external/blktrace/btt/
H A Dmmap.c36 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/
H A DLmap.c45 map_cursor->cur_map = local_map_list;
103 struct map_info *map_info = map_cursor->cur_map;
130 map_cursor->cur_map = map_info->next;
H A Dmap.c58 map_cursor->cur_map = map_cursor->map_list;
65 cursor_map->cur_map = NULL;
71 struct map_info *map_info = map_cursor->cur_map;
81 map_cursor->cur_map = map_info->next;
/external/libunwind/include/
H A Dlibunwind-common.h215 void *cur_map; member in struct:unw_map_cursor

Completed in 2031 milliseconds