Home | History | Annotate | Download | only in libebl

Lines Matching refs:symbol

1 /* Return symbol type name.
24 ebl_symbol_type_name (ebl, symbol, buf, len)
26 int symbol;
32 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
47 if (symbol < STT_NUM)
48 res = stt_names[symbol];
51 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
52 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
53 else if (symbol >= STT_LOOS && symbol <= STT_HIOS)
54 snprintf (buf, len, "LOOS+%d", symbol - STT_LOOS);
56 snprintf (buf, len, gettext ("<unknown>: %d"), symbol);