(library: *mut AndroidLibrary)
| 175 | |
| 176 | #[sysv64] |
| 177 | unsafe fn dlclose(library: *mut AndroidLibrary) { |
| 178 | let _ = Box::from_raw(library); |
| 179 | } |
| 180 | |
| 181 | fn symbol_finder(symbol_name: &str, hooks: &HashMap<String, usize>) -> *const () { |
| 182 | // Check if this function is hooked for this library |
nothing calls this directly
no outgoing calls
no test coverage detected