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

  /external/libunwind/src/
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-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...]
  /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/include/
libunwind-common.h 223 void *cur_map; member in struct:unw_map_cursor

Completed in 179 milliseconds