Example #1
0
void
dwarf_types_dealloc(Dwarf_Debug dbg, Dwarf_Type * dwgl,
    Dwarf_Signed count)
{
    _dwarf_internal_globals_dealloc(dbg, (Dwarf_Global *) dwgl,
        count,
        DW_DLA_TYPENAME_CONTEXT,
        DW_DLA_TYPENAME, DW_DLA_LIST);
    return;
}
Example #2
0
void
dwarf_vars_dealloc(Dwarf_Debug dbg, Dwarf_Var * dwgl,
    Dwarf_Signed count)
{
    _dwarf_internal_globals_dealloc(dbg, (Dwarf_Global *) dwgl,
        count,
        DW_DLA_VAR_CONTEXT,
        DW_DLA_VAR, DW_DLA_LIST);
    return;
}
Example #3
0
void
dwarf_funcs_dealloc(Dwarf_Debug dbg, Dwarf_Func * dwgl,
    Dwarf_Signed count)
{
    _dwarf_internal_globals_dealloc(dbg, (Dwarf_Global *) dwgl,
        count,
        DW_DLA_FUNC_CONTEXT,
        DW_DLA_FUNC, DW_DLA_LIST);
    return;
}
Example #4
0
void
dwarf_weaks_dealloc(Dwarf_Debug dbg, Dwarf_Weak * dwgl,
    Dwarf_Signed count)
{
    _dwarf_internal_globals_dealloc(dbg, (Dwarf_Global *) dwgl,
        count,
        DW_DLA_WEAK_CONTEXT,
        DW_DLA_WEAK, DW_DLA_LIST);
    return;
}
Example #5
0
void
dwarf_globals_dealloc(Dwarf_Debug dbg, Dwarf_Global * dwgl,
    Dwarf_Signed count)
{
    _dwarf_internal_globals_dealloc(dbg, dwgl,
        count,
        DW_DLA_GLOBAL_CONTEXT,
        DW_DLA_GLOBAL, DW_DLA_LIST);
    return;
}
Example #6
0
void
dwarf_pubtypes_dealloc(Dwarf_Debug dbg, Dwarf_Type * dwgl,
    Dwarf_Signed count)
{
    _dwarf_internal_globals_dealloc(dbg,
        (Dwarf_Global *) dwgl,
        count,
        DW_DLA_PUBTYPES_CONTEXT,
        DW_DLA_GLOBAL, /* We don't have DW_DLA_PUBTYPES,
            so use DW_DLA_GLOBAL. */
        DW_DLA_LIST);
    return;
}