Lines Matching defs:space

72 static void _dwarf_free_special_error(Dwarf_Ptr space);
80 Dwarf_Ptr space,
150 space needed per block, but that (DW_RESERVE) will be added in
151 later where it is needed (DW_RESERVE space never added in here).
604 that the space was allocated by a direct call to malloc,
613 obtain the space.
619 If so, the entire chunk is free_ed. Otherwise, the space
627 Dwarf_Ptr space, Dwarf_Unsigned alloc_type)
634 if (space == NULL) {
641 *(Dwarf_Alloc_Area *) ((char *) space - DW_RESERVE);
648 _dwarf_free_special_error(space);
649 dwarf_malloc_check_dealloc_data(space, type);
668 dwarf_malloc_check_dealloc_data(space, type);
671 if ((Dwarf_Small *) space >= dbg->de_debug_info.dss_data &&
672 (Dwarf_Small *) space <
677 (Dwarf_Small *) space >= dbg->de_debug_line.dss_data &&
678 (Dwarf_Small *) space <
683 (Dwarf_Small *) space >= dbg->de_debug_pubnames.dss_data &&
684 (Dwarf_Small *) space <
690 (Dwarf_Small *) space >= dbg->de_debug_frame.dss_data &&
691 (Dwarf_Small *) space <
696 (Dwarf_Small *) space >= dbg->de_debug_str.dss_data &&
697 (Dwarf_Small *) space <
702 (Dwarf_Small *) space >= dbg->de_debug_funcnames.dss_data &&
703 (Dwarf_Small *) space <
709 (Dwarf_Small *) space >= dbg->de_debug_typenames.dss_data &&
710 (Dwarf_Small *) space <
715 (Dwarf_Small *) space >= dbg->de_debug_pubtypes.dss_data &&
716 (Dwarf_Small *) space <
722 (Dwarf_Small *) space >= dbg->de_debug_varnames.dss_data &&
723 (Dwarf_Small *) space <
729 (Dwarf_Small *) space >= dbg->de_debug_weaknames.dss_data &&
730 (Dwarf_Small *) space <
736 _dwarf_simple_malloc_delete_from_list(dbg, space, type);
738 free(space);
749 _dwarf_simple_malloc_delete_from_list(dbg, space, type);
751 free(space);
763 index_into_allocated[type].specialdestructor(space);
766 _dwarf_simple_malloc_delete_from_list(dbg, space, type);
767 free(space);
773 alloc_area = *(Dwarf_Alloc_Area *) ((char *) space - DW_RESERVE);
825 ((Dwarf_Free_List) space)->fl_next = alloc_area->aa_free_list;
826 alloc_area->aa_free_list = space;
833 Allocates space for a Dwarf_Debug_s struct,
1014 space to ensure it is read-write. In that case, free the space. */
1026 Used to free all space allocated for this Dwarf_Debug.
1057 /* Housecleaning done. Now really free all the space. */
1118 Something with the prefix (prefix space hidden from caller).
1149 _dwarf_free_special_error(Dwarf_Ptr space)
1151 char *mem = (char *) space;
1227 Dwarf_Ptr space, short alloc_type)
1229 if (space == 0) {
1242 if (cur->se_addr == space) {
1253 /* Never found the space. */