We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
代码如下,麻烦各位大佬看一下: jobject NativeByteBuffer::getJavaByteBuffer() { if (javaByteBuffer == nullptr && javaVm != nullptr) { JNIEnv *env = 0; if (javaVm->GetEnv((void **) &env, JNI_VERSION_1_6) != JNI_OK) { if (LOGS_ENABLED) DEBUG_E("can't get jnienv"); exit(1); } javaByteBuffer = env->NewDirectByteBuffer(buffer, _capacity);
unidbg执行报定位到这个异常中 Pointer _NewDirectByteBuffer = svcMemory.registerSvc(new Arm64Svc() { @OverRide public long handle(Emulator<?> emulator) { throw new UnsupportedOperationException(); } });
The text was updated successfully, but these errors were encountered:
unidbg有好多东西没实现,遇到throw new UnsupportedOperationException();这种情况你只能自己补咯。
throw new UnsupportedOperationException();
毕竟不可能都补完,要不然不就变成Unidbg OS 了
Sorry, something went wrong.
No branches or pull requests
代码如下,麻烦各位大佬看一下:
jobject NativeByteBuffer::getJavaByteBuffer() {
if (javaByteBuffer == nullptr && javaVm != nullptr) {
JNIEnv *env = 0;
if (javaVm->GetEnv((void **) &env, JNI_VERSION_1_6) != JNI_OK) {
if (LOGS_ENABLED) DEBUG_E("can't get jnienv");
exit(1);
}
javaByteBuffer = env->NewDirectByteBuffer(buffer, _capacity);
unidbg执行报定位到这个异常中
Pointer _NewDirectByteBuffer = svcMemory.registerSvc(new Arm64Svc() {
@OverRide
public long handle(Emulator<?> emulator) {
throw new UnsupportedOperationException();
}
});
The text was updated successfully, but these errors were encountered: