MCPcopy Create free account
hub / github.com/cinit/TMoe / afterHookedMethod

Method afterHookedMethod

app/src/main/java/cc/ioctl/tmoe/util/HookUtils.java:38–48  ·  view source on GitHub ↗
(MethodHookParam param)

Source from the content-addressed store, hash-verified

36 Objects.requireNonNull(method, "method == null");
37 XposedBridge.hookMethod(method, new XC_MethodHook(priority) {
38 @Override
39 protected void afterHookedMethod(MethodHookParam param) throws Throwable {
40 try {
41 if (this0.isEnabled()) {
42 afterHookedMethod.afterHookedMethod(param);
43 }
44 } catch (Throwable e) {
45 this0.logError(e);
46 throw e;
47 }
48 }
49 });
50 }
51

Callers

nothing calls this directly

Calls 3

logErrorMethod · 0.80
afterHookedMethodMethod · 0.65
isEnabledMethod · 0.45

Tested by

no test coverage detected