Rev 2787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2787 | Rev 4377 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup generic |
29 | /** @addtogroup generic |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
34 | 34 | ||
Line 42... | Line 42... | ||
42 | struct symtab_entry { |
42 | struct symtab_entry { |
43 | uint64_t address_le; |
43 | uint64_t address_le; |
44 | char symbol_name[MAX_SYMBOL_NAME]; |
44 | char symbol_name[MAX_SYMBOL_NAME]; |
45 | }; |
45 | }; |
46 | 46 | ||
- | 47 | extern int symtab_name_lookup(unative_t addr, char **name); |
|
47 | extern char * get_symtab_entry(unative_t addr); |
48 | extern char *symtab_fmt_name_lookup(unative_t addr); |
48 | extern uintptr_t get_symbol_addr(const char *name); |
49 | extern int symtab_addr_lookup(const char *name, uintptr_t *addr); |
49 | extern void symtab_print_search(const char *name); |
50 | extern void symtab_print_search(const char *name); |
50 | extern int symtab_compl(char *name); |
51 | extern int symtab_compl(char *input, count_t size); |
- | 52 | ||
- | 53 | #ifdef CONFIG_SYMTAB |
|
51 | 54 | ||
52 | /* Symtable linked together by build process */ |
55 | /* Symtable linked together by build process */ |
53 | extern struct symtab_entry symbol_table[]; |
56 | extern struct symtab_entry symbol_table[]; |
54 | 57 | ||
55 | #endif |
58 | #endif |
56 | 59 | ||
- | 60 | #endif |
|
- | 61 | ||
57 | /** @} |
62 | /** @} |
58 | */ |
63 | */ |