Lines Matching defs:vms_private_data_struct
563 struct vms_private_data_struct struct
565 bfd_boolean is_vax;
566 bfd_boolean fixup_done; /* Flag to indicate if all
569 unsigned char *vms_buf; /* Buffer to record. */
570 int buf_size; /* Max size of buffer. */
571 unsigned char *vms_rec; /* Actual record ptr. */
572 int rec_length; /* Remaining record length. */
573 int rec_size; /* Actual record size. */
574 int rec_type; /* Actual record type. */
575 enum file_format_enum file_format;
577 struct hdr_struc hdr_data; /* Data from HDR/EMH record. */
578 struct eom_struc eom_data; /* Data from EOM/EEOM record. */
579 unsigned int section_count; /* # of sections in following array. */
580 asection **sections; /* Array of GSD/EGSD sections. */
581 int gsd_sym_count; /* # of GSD/EGSD symbols. */
582 asymbol **symbols; /* Vector of GSD/EGSD symbols. */
583 struct proc_value *procedure;
585 struct stack_struct *stack;
586 int stackptr;
588 vms_section *vms_section_table[VMS_SECTION_COUNT];
590 struct bfd_hash_table *vms_symbol_table;
591 struct bfd_symbol **symcache;
592 int symnum;
594 struct location_struct *location_stack;
618 #define PRIV(name) ((struct vms_private_data_struct *) abfd->tdata.any)->name argument