| 227 | |
| 228 | private: |
| 229 | static int32_t SafeCall(void* func, const TVMFFIAny* args, int32_t num_args, TVMFFIAny* rv) { |
| 230 | ExternCFunctionObjImpl* self = reinterpret_cast<ExternCFunctionObjImpl*>(func); |
| 231 | return self->safe_call_(self->self_, args, num_args, rv); |
| 232 | } |
| 233 | |
| 234 | void* self_; |
| 235 | TVMFFISafeCallType safe_call_; |
nothing calls this directly
no outgoing calls
no test coverage detected