• Home
  • Raw
  • Download

Lines Matching refs:res

83   static jint WrapAttachCurrentThread(ProxyJavaVM* vm, JNIEnv** env, void* res) {  in WrapAttachCurrentThread()
84 return vm->real_vm->AttachCurrentThread(env, res); in WrapAttachCurrentThread()
89 static jint WrapAttachCurrentThreadAsDaemon(ProxyJavaVM* vm, JNIEnv** env, void* res) { in WrapAttachCurrentThreadAsDaemon()
90 return vm->real_vm->AttachCurrentThreadAsDaemon(env, res); in WrapAttachCurrentThreadAsDaemon()
135 jvmtiError res = (*out_iface)->DisposeEnvironment(env); in WrapDisposeEnvironment() local
136 return res; in WrapDisposeEnvironment()
145 jvmtiError res = env->Allocate(val.size() + 1, reinterpret_cast<unsigned char**>(out)); in WrapGetSystemProperty() local
146 if (res != JVMTI_ERROR_NONE) { in WrapGetSystemProperty()
147 return res; in WrapGetSystemProperty()
161 jvmtiError res = funcs->original_interface->GetSystemProperties(env, &init_cnt, &init_prop_ptr); in WrapGetSystemProperties() local
162 if (res != JVMTI_ERROR_NONE) { in WrapGetSystemProperties()
163 return res; in WrapGetSystemProperties()
175 res = env->Allocate(all_props.size() * sizeof(char*), in WrapGetSystemProperties()
177 if (res != JVMTI_ERROR_NONE) { in WrapGetSystemProperties()
178 return res; in WrapGetSystemProperties()
183 res = env->Allocate(p.size() + 1, reinterpret_cast<unsigned char**>(&out_prop_ptr[i])); in WrapGetSystemProperties()
184 if (res != JVMTI_ERROR_NONE) { in WrapGetSystemProperties()
185 return res; in WrapGetSystemProperties()
197 jvmtiError res = funcs->original_interface->SetSystemProperty(env, prop, val); in WrapSetSystemProperty() local
198 if (res != JVMTI_ERROR_NONE) { in WrapSetSystemProperty()
199 return res; in WrapSetSystemProperty()
234 jint res = vm->real_vm->GetEnv(out_env, version); in CreateJvmtiEnv() local
235 if (res != JNI_OK) { in CreateJvmtiEnv()
237 return res; in CreateJvmtiEnv()