Lines Matching defs:baton

36 struct baton {  struct
37 cpu_type_t cputype;
39 uint8_t *mach_header_start; // pointer into this program's address space
40 uint8_t *compact_unwind_start; // pointer into this program's address space
42 int addr_size; // 4 or 8 bytes, the size of addresses in this file
44 uint64_t text_segment_vmaddr; // __TEXT segment vmaddr
45 uint64_t text_segment_file_offset;
47 uint64_t text_section_vmaddr; // __TEXT,__text section vmaddr
48 uint64_t text_section_file_offset;
50 uint64_t eh_section_file_address; // the file address of the __TEXT,__eh_frame
54 *lsda_array_start; // for the currently-being-processed first-level index
56 *lsda_array_end; // the lsda_array_start for the NEXT first-level index
58 struct symbol *symbols;
59 int symbols_count;
61 uint64_t *function_start_addresses;
62 int function_start_addresses_count;
64 int current_index_table_number;
66 struct unwind_info_section_header unwind_header;
67 struct unwind_info_section_header_index_entry first_level_index_entry;
69 compressed_second_level_page_header;
93 static void scan_macho_load_commands(struct baton *baton) { in scan_macho_load_commands()
427 void print_encoding_x86_64(struct baton baton, uint8_t *function_start, in print_encoding_x86_64()
643 void print_encoding_i386(struct baton baton, uint8_t *function_start, in print_encoding_i386()
859 void print_encoding_arm64(struct baton baton, uint8_t *function_start, in print_encoding_arm64()
964 void print_encoding_armv7(struct baton baton, uint8_t *function_start, in print_encoding_armv7()
1102 void print_encoding(struct baton baton, uint8_t *function_start, in print_encoding()
1118 void print_function_encoding(struct baton baton, uint32_t idx, in print_function_encoding()
1225 void print_second_level_index_regular(struct baton baton) { in print_second_level_index_regular()
1256 void print_second_level_index_compressed(struct baton baton) { in print_second_level_index_compressed()
1295 void print_second_level_index(struct baton baton) { in print_second_level_index()
1326 void print_index_sections(struct baton baton) { in print_index_sections()
1410 struct baton baton; in main() local