DwarfLinesDeinit
Description
Release storage owned by a DwarfLines. Safe on a zeroed struct.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Dwarf.c:32:
if (built)
DwarfLinesDeinit(&lines);
ElfFileDeinit(&elf);
DefaultAllocatorDeinit(&alloc);- In
Dwarf.c:75:
ok = true;
}
DwarfLinesDeinit(&lines);
} #if MISRA_HAVE_PARSER_DWARF
if (e->dwarf_built && e->dwarf_ok) {
DwarfLinesDeinit(&e->dwarf);
}
#endif- In
Dwarf.c:689:
if (!ok) {
DwarfLinesDeinit(out);
return false;
}- In
Dwarf.c:695:
}
void DwarfLinesDeinit(DwarfLines *self) {
if (!self)
return;
Last updated on