(String name)
| 33 | }; |
| 34 | |
| 35 | private static Function getApi(String name) { |
| 36 | Function func = apiFuncs.get().get(name); |
| 37 | if (func == null) { |
| 38 | func = Function.getFunction(name); |
| 39 | apiFuncs.get().put(name, func); |
| 40 | } |
| 41 | return func; |
| 42 | } |
| 43 | |
| 44 | Module(long handle) { |
| 45 | super(handle, TypeIndex.kTVMFFIModule); |
no test coverage detected