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

  /external/libunwind/include/
map_info.h 31 struct map_info struct
42 struct map_info *next;
46 extern struct map_info *local_map_list;
56 struct map_info *map_alloc_info (void);
58 void map_free_info (struct map_info *);
60 struct map_info *map_find_from_addr (struct map_info *, unw_word_t);
62 struct map_info *map_create_list (pid_t);
64 void map_destroy_list (struct map_info *);
  /external/libunwind/src/mi/
Lmap.c 30 HIDDEN struct map_info *local_map_list = NULL;
103 struct map_info *map_info = map_cursor->cur_map; local
107 if (map_info == NULL)
122 unw_map->start = map_info->start;
123 unw_map->end = map_info->end;
124 unw_map->flags = map_info->flags;
125 if (map_info->path)
126 unw_map->path = strdup (map_info->path);
130 map_cursor->cur_map = map_info->next
    [all...]
map.c 71 struct map_info *map_info = map_cursor->cur_map; local
73 if (map_info == NULL)
76 unw_map->start = map_info->start;
77 unw_map->end = map_info->end;
78 unw_map->flags = map_info->flags;
79 unw_map->path = map_info->path;
81 map_cursor->cur_map = map_info->next;
86 HIDDEN struct map_info *
97 mempool_init (&map_pool, sizeof(struct map_info), 0)
    [all...]
  /development/ndk/platforms/android-3/include/linux/mtd/
map.h 45 struct map_info { struct
56 void (*inval_cache)(struct map_info *, unsigned long, ssize_t);
58 void (*set_vpp)(struct map_info *, int);
67 struct mtd_info *(*probe)(struct map_info *map);
74 struct mtd_info *do_map_probe(const char *name, struct map_info *map);
  /art/runtime/
mem_map.cc 171 std::ostringstream map_info; local
172 map_info << std::make_pair(it, map->end());
178 map_info.str().c_str());

Completed in 1081 milliseconds