OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unw_map
(Results
1 - 4
of
4
) sorted by null
/system/core/libbacktrace/
UnwindMap.cpp
52
unw_map_t
unw_map
;
local
53
while (unw_map_cursor_get_next(&map_cursor_, &
unw_map
)) {
56
map.start =
unw_map
.start;
57
map.end =
unw_map
.end;
58
map.offset =
unw_map
.offset;
59
map.load_base =
unw_map
.load_base;
60
map.flags =
unw_map
.flags;
61
map.name =
unw_map
.path;
94
unw_map_t
unw_map
;
local
96
while ((ret = unw_map_local_cursor_get_next(&map_cursor_, &
unw_map
)) > 0)
[
all
...]
/external/libunwind/src/mi/
Lmap.c
101
unw_map_local_cursor_get_next (unw_map_cursor_t *map_cursor, unw_map_t *
unw_map
)
122
unw_map
->start = map_info->start;
123
unw_map
->end = map_info->end;
124
unw_map
->offset = map_info->offset;
125
unw_map
->load_base = map_info->load_base;
126
unw_map
->flags = map_info->flags;
128
unw_map
->path = strdup (map_info->path);
130
unw_map
->path = NULL;
map.c
69
unw_map_cursor_get_next (unw_map_cursor_t *map_cursor, unw_map_t *
unw_map
)
76
unw_map
->start = map_info->start;
77
unw_map
->end = map_info->end;
78
unw_map
->offset = map_info->offset;
79
unw_map
->load_base = map_info->load_base;
80
unw_map
->flags = map_info->flags;
81
unw_map
->path = map_info->path;
/external/libunwind/include/
libunwind-common.h
227
typedef struct
unw_map
struct
Completed in 252 milliseconds