Home | History | Annotate | Download | only in stage2

Lines Matching defs:aout

52       struct exec *aout;
62 pu.aout = (struct exec *) buffer;
168 pu.aout = (struct exec *) buffer;
172 else if (len > sizeof (struct exec) && !N_BADMAG ((*(pu.aout))))
174 entry_addr = (entry_func) pu.aout->a_entry;
201 if (N_GETMAGIC ((*(pu.aout))) != NMAGIC)
208 grub_seek (N_TXTOFF (*(pu.aout)));
209 text_len = pu.aout->a_text;
210 data_len = pu.aout->a_data;
211 bss_len = pu.aout->a_bss;
534 if (!errnum && pu.aout->a_syms
535 && pu.aout->a_syms < (filemax - filepos))
545 *((int *) RAW_ADDR (cur_addr)) = pu.aout->a_syms;
548 printf (", symtab=0x%x", pu.aout->a_syms);
550 if (grub_read ((char *) RAW_ADDR (cur_addr), pu.aout->a_syms)
551 == pu.aout->a_syms)
553 cur_addr += pu.aout->a_syms;
554 mbi.syms.a.tabsize = pu.aout->a_syms;