MCPcopy Create free account
hub / github.com/Dadoum/android-loader / AndroidLibrary

Class AndroidLibrary

src/android_library.rs:111–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111pub struct AndroidLibrary<'a> {
112 pub(crate) file: Box<Vec<u8>>,
113 pub(crate) memory_map: MmapMut,
114 pub(crate) dyn_symbols: &'a [DynEntry],
115 pub(crate) dyn_strs: &'a [u8],
116 pub(crate) alignment_offset: usize,
117 pub(crate) gnu_hash_table: Option<GnuHashTable<'a>>
118}
119
120impl AndroidLibrary<'_> {
121 pub fn get_symbol(&self, symbol_name: &str) -> Option<*const ()> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected