Lines Matching refs:asect
60 asection *asect; in netbsd_core_file_p() local
129 asect = bfd_make_section_anyway_with_flags (abfd, sname, flags); in netbsd_core_file_p()
130 if (asect == NULL) in netbsd_core_file_p()
133 asect->size = coreseg.c_size; in netbsd_core_file_p()
134 asect->vma = coreseg.c_addr; in netbsd_core_file_p()
135 asect->filepos = offset; in netbsd_core_file_p()
136 asect->alignment_power = 2; in netbsd_core_file_p()
158 asect->size = wcookie_offset; in netbsd_core_file_p()
162 asect = bfd_make_section_anyway_with_flags (abfd, ".wcookie", in netbsd_core_file_p()
164 if (asect == NULL) in netbsd_core_file_p()
167 asect->size = coreseg.c_size - wcookie_offset; in netbsd_core_file_p()
168 asect->vma = 0; in netbsd_core_file_p()
169 asect->filepos = offset + wcookie_offset; in netbsd_core_file_p()
170 asect->alignment_power = 2; in netbsd_core_file_p()