Lines Matching defs:core

280 /* core files */
285 /* The core structure is taken from the Sun documentation.
287 can't find it easily. Fortunately the core header contains its own
326 int c_len; /* Sizeof (struct core) */
349 int c_len; /* Sizeof (struct core) */
383 int c_len; /* Sizeof (struct core) */
404 int c_len; /* Sizeof (struct core) */
427 /* byte-swap in the Sun-3 core structure */
464 /* byte-swap in the Sparc core structure */
510 because we want the value for this core file, no matter what kind of
523 /* byte-swap in the Solaris BCP core structure */
544 As of Solaris 2.3, BCP core files for statically linked executables
577 because we want the value for this core file, no matter what kind of
600 struct internal_sunos_core *hdr; /* core file header */
614 struct internal_sunos_core *core;
631 /* SunOS core headers can vary in length; second word is size; */
659 /* Validate that it's a core file we know how to handle, due to sun
662 core = &mergem->internal_sunos_core;
666 swapcore_sparc (abfd, extcore, core);
669 swapcore_sun3 (abfd, extcore, core);
672 swapcore_solaris_bcp (abfd, extcore, core);
680 abfd->tdata.sun_core_data->hdr = core;
705 core_stacksec (abfd)->size = core->c_ssize;
706 core_datasec (abfd)->size = core->c_dsize;
707 core_regsec (abfd)->size = core->c_regs_size;
708 core_reg2sec (abfd)->size = core->fp_stuff_size;
710 core_stacksec (abfd)->vma = (core->c_stacktop - core->c_ssize);
711 core_datasec (abfd)->vma = core->c_data_addr;
715 core_stacksec (abfd)->filepos = core->c_len + core->c_dsize;
716 core_datasec (abfd)->filepos = core->c_len;
717 /* We'll access the regs afresh in the core file, like any section: */
718 core_regsec (abfd)->filepos = (file_ptr) core->c_regs_pos;
719 core_reg2sec (abfd)->filepos = (file_ptr) core->fp_stuff_pos;
755 /* Solaris core files do not include an aouthdr. */