| 795 | } |
| 796 | |
| 797 | jobject JEnv::NewDirectByteBuffer(void *address, jlong capacity) { |
| 798 | jobject jo = m_env->NewDirectByteBuffer(address, capacity); |
| 799 | CheckForJavaException(); |
| 800 | return jo; |
| 801 | } |
| 802 | |
| 803 | void *JEnv::GetDirectBufferAddress(jobject buf) { |
| 804 | void *v = m_env->GetDirectBufferAddress(buf); |
no outgoing calls
no test coverage detected