OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mapinfo_t
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/bionic/
debug_mapinfo.h
34
struct
mapinfo_t
{
struct
35
struct
mapinfo_t
* next;
41
__LIBC_HIDDEN__
mapinfo_t
* mapinfo_create(pid_t pid);
42
__LIBC_HIDDEN__ void mapinfo_destroy(
mapinfo_t
* mi);
43
__LIBC_HIDDEN__ const
mapinfo_t
* mapinfo_find(
mapinfo_t
* mi, uintptr_t pc, uintptr_t* rel_pc);
debug_mapinfo.cpp
40
static
mapinfo_t
* parse_maps_line(char* line) {
58
mapinfo_t
* mi = reinterpret_cast<
mapinfo_t
*>(calloc(1, sizeof(
mapinfo_t
) + name_len + 1));
68
__LIBC_HIDDEN__
mapinfo_t
* mapinfo_create(pid_t pid) {
71
struct
mapinfo_t
* milist = NULL;
77
mapinfo_t
* mi = parse_maps_line(data);
88
__LIBC_HIDDEN__ void mapinfo_destroy(
mapinfo_t
* mi) {
92
mapinfo_t
* del = mi;
99
__LIBC_HIDDEN__ const
mapinfo_t
* mapinfo_find(mapinfo_t* mi, uintptr_t pc, uintptr_t* rel_pc)
[
all
...]
debug_stacktrace.cpp
54
static
mapinfo_t
* g_map_info = NULL;
159
const
mapinfo_t
* mi = (g_map_info != NULL) ? mapinfo_find(g_map_info, frames[i], &rel_pc) : NULL;
Completed in 196 milliseconds