Lines Matching refs:e_ident
270 unsigned char e_ident[elfcpp::EI_NIDENT]; in write_file_header() local
271 memset(e_ident, 0, elfcpp::EI_NIDENT); in write_file_header()
272 e_ident[elfcpp::EI_MAG0] = elfcpp::ELFMAG0; in write_file_header()
273 e_ident[elfcpp::EI_MAG1] = elfcpp::ELFMAG1; in write_file_header()
274 e_ident[elfcpp::EI_MAG2] = elfcpp::ELFMAG2; in write_file_header()
275 e_ident[elfcpp::EI_MAG3] = elfcpp::ELFMAG3; in write_file_header()
277 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS32; in write_file_header()
279 e_ident[elfcpp::EI_CLASS] = elfcpp::ELFCLASS64; in write_file_header()
282 e_ident[elfcpp::EI_DATA] = (big_endian in write_file_header()
285 e_ident[elfcpp::EI_VERSION] = elfcpp::EV_CURRENT; in write_file_header()
286 oehdr.put_e_ident(e_ident); in write_file_header()