获取Module

通过模块名来获取Module

findModuleByName()、getModuleByName()

前者找不到会返回null,后者会报错,推荐使用前者。

var module = Process.findModuleByName("test.so")
if (module != null) {
	console.log(JSON.stringify(module))
}