Lines Matching refs:buf

498     jclass DefineClass(const char *name, jobject loader, const jbyte* buf,
500 { return functions->DefineClass(this, name, loader, buf, bufLen); }
925 jboolean* buf)
926 { functions->GetBooleanArrayRegion(this, array, start, len, buf); }
928 jbyte* buf)
929 { functions->GetByteArrayRegion(this, array, start, len, buf); }
931 jchar* buf)
932 { functions->GetCharArrayRegion(this, array, start, len, buf); }
934 jshort* buf)
935 { functions->GetShortArrayRegion(this, array, start, len, buf); }
937 jint* buf)
938 { functions->GetIntArrayRegion(this, array, start, len, buf); }
940 jlong* buf)
941 { functions->GetLongArrayRegion(this, array, start, len, buf); }
943 jfloat* buf)
944 { functions->GetFloatArrayRegion(this, array, start, len, buf); }
946 jdouble* buf)
947 { functions->GetDoubleArrayRegion(this, array, start, len, buf); }
950 const jboolean* buf)
951 { functions->SetBooleanArrayRegion(this, array, start, len, buf); }
953 const jbyte* buf)
954 { functions->SetByteArrayRegion(this, array, start, len, buf); }
956 const jchar* buf)
957 { functions->SetCharArrayRegion(this, array, start, len, buf); }
959 const jshort* buf)
960 { functions->SetShortArrayRegion(this, array, start, len, buf); }
962 const jint* buf)
963 { functions->SetIntArrayRegion(this, array, start, len, buf); }
965 const jlong* buf)
966 { functions->SetLongArrayRegion(this, array, start, len, buf); }
968 const jfloat* buf)
969 { functions->SetFloatArrayRegion(this, array, start, len, buf); }
971 const jdouble* buf)
972 { functions->SetDoubleArrayRegion(this, array, start, len, buf); }
990 void GetStringRegion(jstring str, jsize start, jsize len, jchar* buf)
991 { functions->GetStringRegion(this, str, start, len, buf); }
993 void GetStringUTFRegion(jstring str, jsize start, jsize len, char* buf)
994 { return functions->GetStringUTFRegion(this, str, start, len, buf); }
1020 void* GetDirectBufferAddress(jobject buf)
1021 { return functions->GetDirectBufferAddress(this, buf); }
1023 jlong GetDirectBufferCapacity(jobject buf)
1024 { return functions->GetDirectBufferCapacity(this, buf); }