Home
last modified time | relevance | path

Searched refs:code_buffer (Results 1 – 2 of 2) sorted by relevance

/ThreadX-v6.4.1/common_modules/module_manager/utilities/
Dmodule_to_c_array.c137 unsigned char *code_buffer; in main() local
332 code_buffer = malloc(code_section_array[i].code_section_size); in main()
336 …elf_object_read(section_header[j].elf_section_header_offset, code_buffer, code_section_array[i].co… in main()
348 fprintf(array_file, "/* 0x%08X */ 0x%02X", address, (unsigned int) code_buffer[j]); in main()
350 fprintf(array_file, ", 0x%02X", (unsigned int) code_buffer[j]); in main()
Dmodule_to_binary.c136 unsigned char *code_buffer; in main() local
300 code_buffer = malloc(code_section_array[i].code_section_size); in main()
304 …elf_object_read(section_header[j].elf_section_header_offset, code_buffer, code_section_array[i].co… in main()
314 fwrite(&code_buffer[j], 1, 1, binary_file); in main()