Lines Matching defs:vms_private_data_struct
567 struct vms_private_data_struct { struct
568 int is_vax;
569 bfd_boolean fixup_done; /* Flag to indicate if all
572 unsigned char *vms_buf; /* buffer to record */
573 int buf_size; /* max size of buffer */
574 unsigned char *vms_rec; /* actual record ptr */
575 int rec_length; /* remaining record length */
576 int rec_size; /* actual record size */
577 int rec_type; /* actual record type */
578 enum file_format_enum file_format;
580 struct hdr_struc hdr_data; /* data from HDR/EMH record */
581 struct eom_struc eom_data; /* data from EOM/EEOM record */
582 unsigned int section_count; /* # of sections in following array */
583 asection **sections; /* array of GSD/EGSD sections */
584 int gsd_sym_count; /* # of GSD/EGSD symbols */
585 asymbol **symbols; /* vector of GSD/EGSD symbols */
586 struct proc_value *procedure;
588 struct stack_struct *stack;
589 int stackptr;
591 vms_section *vms_section_table[VMS_SECTION_COUNT];
593 struct bfd_hash_table *vms_symbol_table;
594 struct bfd_symbol **symcache;
595 int symnum;
597 struct location_struct *location_stack;
599 asection *image_section; /* section for image_ptr */
623 #define PRIV(name) ((struct vms_private_data_struct *)abfd->tdata.any)->name argument