Lines Matching refs:core

56   struct core_dumpxx core, *new_core_hdr;  in xcoff64_core_p()  local
71 != bfd_bread (&core, sizeof (struct core_dumpxx), abfd)) in xcoff64_core_p()
90 if ((CORE_VERSION_1 != (core.c_flag & CORE_VERSION_1)) in xcoff64_core_p()
91 || (0 != core.c_entries) in xcoff64_core_p()
92 || (! (IS_PROC64 (&core.c_u.U_proc))) in xcoff64_core_p()
93 || ((CHECK_FILE_OFFSET (statbuf, core.c_fdsinfox))) in xcoff64_core_p()
94 || ((CHECK_FILE_OFFSET (statbuf, core.c_loader))) in xcoff64_core_p()
95 || ((CHECK_FILE_OFFSET (statbuf, core.c_loader + core.c_lsize))) in xcoff64_core_p()
96 || ((CHECK_FILE_OFFSET (statbuf, core.c_thr))) in xcoff64_core_p()
97 || ((CHECK_FILE_OFFSET (statbuf, core.c_segregion))) in xcoff64_core_p()
98 || ((CHECK_FILE_OFFSET (statbuf, core.c_stack))) in xcoff64_core_p()
99 || ((CHECK_FILE_OFFSET (statbuf, core.c_stack + core.c_size))) in xcoff64_core_p()
100 || ((CHECK_FILE_OFFSET (statbuf, core.c_data))) in xcoff64_core_p()
101 || ((CHECK_FILE_OFFSET (statbuf, core.c_data + core.c_datasize))) in xcoff64_core_p()
102 || (! (core.c_flag & UBLOCK_VALID)) in xcoff64_core_p()
103 || (! (core.c_flag & LE_VALID))) in xcoff64_core_p()
107 if ((! (core.c_flag & USTACK_VALID)) in xcoff64_core_p()
108 || (core.c_flag & CORE_TRUNC)) in xcoff64_core_p()
119 memcpy (new_core_hdr, &core, sizeof (struct core_dumpxx)); in xcoff64_core_p()
131 sec->size = core.c_size; in xcoff64_core_p()
132 sec->vma = core.c_stackorg; in xcoff64_core_p()
133 sec->filepos = core.c_stack; in xcoff64_core_p()
155 sec->size = core.c_lsize; in xcoff64_core_p()
157 sec->filepos = core.c_loader; in xcoff64_core_p()
169 sec->size = core.c_datasize; in xcoff64_core_p()
170 sec->vma = core.c_dataorg; in xcoff64_core_p()
171 sec->filepos = core.c_data; in xcoff64_core_p()
174 ld_offset = core.c_loader; in xcoff64_core_p()
203 if (core.c_vmregions) in xcoff64_core_p()
205 if (bfd_seek (abfd, core.c_vmm, SEEK_SET) != 0) in xcoff64_core_p()
208 for (i = 0; i < core.c_vmregions; i++) in xcoff64_core_p()
245 struct core_dumpxx core; in xcoff64_core_file_matches_executable_p() local
256 bfd_bread (&core, sizeof (struct core_dumpxx), core_bfd)) in xcoff64_core_file_matches_executable_p()
259 if (bfd_seek (core_bfd, core.c_loader, SEEK_SET) != 0) in xcoff64_core_file_matches_executable_p()