Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dcode_memory.rs161 for section_header in sections.iter() { in new()
162 let data = section_header in new()
165 let name = section_name(endian, strings, section_header)?; in new()
169 let section_align = usize::try_from(section_header.sh_addralign(endian))?; in new()
188 if let Some(target_section) = reloc_section_target(&sections, section_header, endian)? { in new()
205 if section_header.sh_flags(endian) & obj::SH_WASMTIME_NOT_EXECUTED != 0 { in new()
641 section_header: &SectionHeader64<Endianness>, in section_name()
643 let name = section_header in section_name()
649 fn is_reloc_section(section_header: &SectionHeader64<Endianness>, endian: Endianness) -> bool { in is_reloc_section()
650 let sh_type = section_header.sh_type(endian); in is_reloc_section()
/wasmtime-44.0.1/crates/wasmtime/src/engine/
H A Dserialization.rs89 let mut section_header = None; in check_compatible() localVariable
93 section_header = Some(s); in check_compatible()
96 let Some(section_header) = section_header else { in check_compatible()
99 let data = section_header in check_compatible()