(&self, name: S)
| 188 | } |
| 189 | |
| 190 | pub fn is_mangled_string<S: BnStrCompatible>(&self, name: S) -> bool { |
| 191 | let bytes = name.into_bytes_with_nul(); |
| 192 | unsafe { BNIsDemanglerMangledName(self.handle, bytes.as_ref().as_ptr() as *const _) } |
| 193 | } |
| 194 | |
| 195 | pub fn demangle<S: BnStrCompatible>( |
| 196 | &self, |
nothing calls this directly
no test coverage detected