Example #1
0
 // SetShortArrayRegion
 public void SetShortArrayRegion(jshortArray array, jsize start, jsize len, jshort *buf)
 => functions->SetShortArrayRegion(env, array, start, len, buf);
Example #2
0
 // SetByteArrayRegion
 public void SetByteArrayRegion(jbyteArray array, jsize start, jsize len, jbyte *buf)
 => functions->SetByteArrayRegion(env, array, start, len, buf);
Example #3
0
 // SetCharArrayRegion
 public void SetCharArrayRegion(jcharArray array, jsize start, jsize len, jchar *buf)
 => functions->SetCharArrayRegion(env, array, start, len, buf);
Example #4
0
 // NewObjectArray
 public jobjectArray NewObjectArray(jsize length, jclass elementClass, jobject initialElement)
 => functions->NewObjectArray(env, length, elementClass, initialElement);
Example #5
0
 // SetBooleanArrayRegion
 public void SetBooleanArrayRegion(jbooleanArray array, jsize start, jsize len, jboolean *buf)
 => functions->SetBooleanArrayRegion(env, array, start, len, buf);
Example #6
0
 // SetFloatArrayRegion
 public void SetFloatArrayRegion(jfloatArray array, jsize start, jsize len, jfloat *buf)
 => functions->SetFloatArrayRegion(env, array, start, len, buf);
Example #7
0
 // GetStringRegion
 public void GetStringRegion(jstring str, jsize start, jsize len, jchar *buf)
 => functions->GetStringRegion(env, str, start, len, buf);
Example #8
0
 // NewShortArray
 public jshortArray NewShortArray(jsize length)
 => functions->NewShortArray(env, length);
Example #9
0
 // NewIntArray
 public jintArray NewIntArray(jsize length)
 => functions->NewIntArray(env, length);
Example #10
0
 // NewByteArray
 public jbyteArray NewByteArray(jsize length)
 => functions->NewByteArray(env, length);
Example #11
0
 // NewCharArray
 public jcharArray NewCharArray(jsize length)
 => functions->NewCharArray(env, length);
Example #12
0
 // NewBooleanArray
 public jbooleanArray NewBooleanArray(jsize length)
 => functions->NewBooleanArray(env, length);
Example #13
0
 // SetObjectArrayElement
 public void SetObjectArrayElement(jobjectArray array, jsize index, jobject value)
 => functions->SetObjectArrayElement(env, array, index, value);
Example #14
0
 // GetObjectArrayElement
 public jobject GetObjectArrayElement(jobjectArray array, jsize index)
 => functions->GetObjectArrayElement(env, array, index);
Example #15
0
 // SetIntArrayRegion
 public void SetIntArrayRegion(jintArray array, jsize start, jsize len, jint *buf)
 => functions->SetIntArrayRegion(env, array, start, len, buf);
Example #16
0
 // NewLongArray
 public jlongArray NewLongArray(jsize length)
 => functions->NewLongArray(env, length);
Example #17
0
 // SetLongArrayRegion
 public void SetLongArrayRegion(jlongArray array, jsize start, jsize len, jlong *buf)
 => functions->SetLongArrayRegion(env, array, start, len, buf);
Example #18
0
 // NewFloatArray
 public jfloatArray NewFloatArray(jsize length)
 => functions->NewFloatArray(env, length);
Example #19
0
 // SetDoubleArrayRegion
 public void SetDoubleArrayRegion(jdoubleArray array, jsize start, jsize len, jdouble *buf)
 => functions->SetDoubleArrayRegion(env, array, start, len, buf);
Example #20
0
 // NewDoubleArray
 public jdoubleArray NewDoubleArray(jsize length)
 => functions->NewDoubleArray(env, length);
Example #21
0
 // GetStringUTFRegion
 public void GetStringUTFRegion(jstring str, jsize start, jsize len, byte *buf)
 => functions->GetStringUTFRegion(env, str, start, len, buf);
Example #22
0
 // NewString
 public jstring NewString(jchar *unicode, jsize len)
 => functions->NewString(env, unicode, len);