Lines Matching refs:commands
2917 bfd_mach_o_load_command *commands; in bfd_mach_o_build_commands() local
3014 commands = bfd_zalloc (abfd, nbr_commands * sizeof (bfd_mach_o_load_command)); in bfd_mach_o_build_commands()
3015 if (commands == NULL) in bfd_mach_o_build_commands()
3018 commands[i].next = &commands[i + 1]; in bfd_mach_o_build_commands()
3019 commands[nbr_commands - 1].next = mdata->first_command; in bfd_mach_o_build_commands()
3021 mdata->last_command = &commands[nbr_commands - 1]; in bfd_mach_o_build_commands()
3022 mdata->first_command = &commands[0]; in bfd_mach_o_build_commands()
3027 bfd_mach_o_init_segment (mdata, &commands[0], "", mdata->nsects); in bfd_mach_o_build_commands()
3036 cmd = &commands[0]; in bfd_mach_o_build_commands()
3064 bfd_mach_o_load_command *cmd = &commands[symtab_idx]; in bfd_mach_o_build_commands()
3074 bfd_mach_o_load_command *cmd = &commands[dysymtab_idx]; in bfd_mach_o_build_commands()
3083 bfd_mach_o_load_command *cmd = &commands[main_idx]; in bfd_mach_o_build_commands()
3101 (abfd, &commands[i].command.segment)) in bfd_mach_o_build_commands()
3111 bfd_mach_o_segment_command *seg = &commands[i].command.segment; in bfd_mach_o_build_commands()
3121 commands[0].command.segment.vmsize = in bfd_mach_o_build_commands()
3122 commands[1].command.segment.vmaddr; in bfd_mach_o_build_commands()
3125 commands[nbr_segcmd - 1].command.segment.vmaddr = maxvma; in bfd_mach_o_build_commands()
3126 commands[nbr_segcmd - 1].command.segment.fileoff = mdata->filelen; in bfd_mach_o_build_commands()
3130 commands[main_idx].command.main.entryoff = in bfd_mach_o_build_commands()
3131 bfd_get_start_address (abfd) - commands[1].command.segment.vmaddr; in bfd_mach_o_build_commands()