Lines Matching refs:err

157   jvmtiError err = env->Allocate(*size_ptr, bytecode_ptr);  in GetBytecodes()  local
158 if (err != OK) { in GetBytecodes()
159 return err; in GetBytecodes()
232 jvmtiError err = OK; in GetLocalVariableTable() local
236 if (err != OK || in GetLocalVariableTable()
237 (err = env->Allocate(table_size, in GetLocalVariableTable()
244 return err; in GetLocalVariableTable()
252 if (err != OK) { in GetLocalVariableTable()
255 JvmtiUniquePtr<char[]> name_str = CopyString(env, entry.name_, &err); in GetLocalVariableTable()
256 if (err != OK) { in GetLocalVariableTable()
259 JvmtiUniquePtr<char[]> sig_str = CopyString(env, entry.descriptor_, &err); in GetLocalVariableTable()
260 if (err != OK) { in GetLocalVariableTable()
263 JvmtiUniquePtr<char[]> generic_sig_str = CopyString(env, entry.signature_, &err); in GetLocalVariableTable()
264 if (err != OK) { in GetLocalVariableTable()
593 jvmtiError err = GetSlotType(method, pc, &descriptor, &slot_type); in Run() local
594 if (err != OK) { in Run()
595 result_ = err; in Run()
599 err = GetTypeError(method, slot_type, descriptor); in Run()
600 if (err != OK) { in Run()
601 result_ = err; in Run()
950 jvmtiError err = ERR(INTERNAL); in GetLocalVariableGeneric() local
951 if (!ThreadUtil::GetAliveNativeThread(thread, soa, &target, &err)) { in GetLocalVariableGeneric()
953 return err; in GetLocalVariableGeneric()
1129 jvmtiError err = ERR(INTERNAL); in SetLocalVariableGeneric() local
1130 if (!ThreadUtil::GetAliveNativeThread(thread, soa, &target, &err)) { in SetLocalVariableGeneric()
1132 return err; in SetLocalVariableGeneric()
1191 jvmtiError err = ERR(INTERNAL); in GetLocalInstance() local
1192 if (!ThreadUtil::GetAliveNativeThread(thread, soa, &target, &err)) { in GetLocalInstance()
1194 return err; in GetLocalInstance()
1267 jvmtiError err = GetLocalVariableGeneric(env, thread, depth, slot, type, &v); in GetLocalVariable() local
1268 if (err != OK) { in GetLocalVariable()
1269 return err; in GetLocalVariable()