Lines Matching refs:coreout
56 do_sections64 (bfd *abfd, struct coreout *coreout) in do_sections64() argument
62 for (i = 0; i < coreout->c_nvmap; i++) in do_sections64()
104 do_sections (bfd *abfd, struct coreout *coreout) in do_sections() argument
110 for (i = 0; i < coreout->c_nvmap; i++) in do_sections()
173 struct coreout coreout; in irix_core_core_file_p() local
177 val = bfd_bread (&coreout, (bfd_size_type) sizeof coreout, abfd); in irix_core_core_file_p()
178 if (val != sizeof coreout) in irix_core_core_file_p()
185 if (coreout.c_version != CORE_VERSION1) in irix_core_core_file_p()
189 switch (coreout.c_magic) in irix_core_core_file_p()
206 strncpy (core_command (abfd), coreout.c_name, CORE_NAMESIZE); in irix_core_core_file_p()
207 core_signal (abfd) = coreout.c_sigcause; in irix_core_core_file_p()
209 if (bfd_seek (abfd, coreout.c_vmapoffset, SEEK_SET) != 0) in irix_core_core_file_p()
214 if (coreout.c_magic == (int) CORE_MAGIC64) in irix_core_core_file_p()
216 if (! do_sections64 (abfd, & coreout)) in irix_core_core_file_p()
221 if (! do_sections (abfd, & coreout)) in irix_core_core_file_p()
226 idg = &coreout.c_idesc[I_GPREGS]; in irix_core_core_file_p()
227 idf = &coreout.c_idesc[I_FPREGS]; in irix_core_core_file_p()
228 ids = &coreout.c_idesc[I_SPECREGS]; in irix_core_core_file_p()