OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bkpts
(Results
1 - 3
of
3
) sorted by null
/external/elfutils/libdw/
dwarf_entry_breakpoints.c
59
dwarf_entry_breakpoints (die,
bkpts
)
61
Dwarf_Addr **
bkpts
;
64
*
bkpts
= NULL;
69
Dwarf_Addr *newlist = realloc (*
bkpts
, ++nbkpts * sizeof newlist[0]);
72
free (*
bkpts
);
73
*
bkpts
= NULL;
78
*
bkpts
= newlist;
libdw.h
605
and sets *
BKPTS
to a malloc'd vector of addresses. */
606
extern int dwarf_entry_breakpoints (Dwarf_Die *die, Dwarf_Addr **
bkpts
);
/external/elfutils/tests/
find-prologues.c
77
Dwarf_Addr *
bkpts
= NULL;
local
78
int result = dwarf_entry_breakpoints (func, &
bkpts
);
84
printf (" %#.16" PRIx64 "%s",
bkpts
[i] + a->dwbias,
86
free (
bkpts
);
Completed in 46 milliseconds