Lines Matching refs:funcs
130 ExtraJvmtiInterface* funcs = reinterpret_cast<ExtraJvmtiInterface*>( in WrapDisposeEnvironment() local
133 *out_iface = const_cast<jvmtiInterface_1_*>(funcs->original_interface); in WrapDisposeEnvironment()
134 funcs->original_interface->Deallocate(env, reinterpret_cast<unsigned char*>(funcs)); in WrapDisposeEnvironment()
140 ExtraJvmtiInterface* funcs = reinterpret_cast<ExtraJvmtiInterface*>( in WrapGetSystemProperty() local
142 auto it = funcs->proxy_vm->map->find(prop); in WrapGetSystemProperty()
143 if (it != funcs->proxy_vm->map->end()) { in WrapGetSystemProperty()
153 return funcs->original_interface->GetSystemProperty(env, prop, out); in WrapGetSystemProperty()
158 ExtraJvmtiInterface* funcs = reinterpret_cast<ExtraJvmtiInterface*>( in WrapGetSystemProperties() local
162 jvmtiError res = funcs->original_interface->GetSystemProperties(env, &init_cnt, &init_prop_ptr); in WrapGetSystemProperties()
167 for (const auto& p : *funcs->proxy_vm->map) { in WrapGetSystemProperties()
196 ExtraJvmtiInterface* funcs = reinterpret_cast<ExtraJvmtiInterface*>( in WrapSetSystemProperty() local
198 jvmtiError res = funcs->original_interface->SetSystemProperty(env, prop, val); in WrapSetSystemProperty()
202 auto it = funcs->proxy_vm->map->find(prop); in WrapSetSystemProperty()
203 if (it != funcs->proxy_vm->map->end()) { in WrapSetSystemProperty()