Lines Matching refs:env

49         (*env)->GetPrimitiveArrayCritical(env, prefixh, 0); \
53 (*env)->GetPrimitiveArrayCritical(env, suffixh, 0); \
57 (*env)->GetPrimitiveArrayCritical(env, outCodeh, 0); \
61 (*env)->GetPrimitiveArrayCritical(env, raslineh, 0); \
65 (*env)->GetPrimitiveArrayCritical(env, blockh, 0); \
75 (*env)->ReleasePrimitiveArrayCritical(env, prefixh, prefix, 0); \
77 (*env)->ReleasePrimitiveArrayCritical(env, suffixh, suffix, 0); \
79 (*env)->ReleasePrimitiveArrayCritical(env, outCodeh, outCode, 0); \
81 (*env)->ReleasePrimitiveArrayCritical(env, raslineh, rasline, 0); \
83 (*env)->ReleasePrimitiveArrayCritical(env, blockh, block, 0)
105 Java_sun_awt_image_GifImageDecoder_initIDs(JNIEnv *env, jclass this)
107 readID = (*env)->GetMethodID(env, this, "readBytes", "([BII)I");
108 sendID = (*env)->GetMethodID(env, this, "sendPixels",
110 prefixID = (*env)->GetFieldID(env, this, "prefix", "[S");
111 suffixID = (*env)->GetFieldID(env, this, "suffix", "[B");
112 outCodeID = (*env)->GetFieldID(env, this, "outCode", "[B");
116 Java_sun_awt_image_GifImageDecoder_parseImage(JNIEnv *env,
180 jshortArray prefixh = (*env)->GetObjectField(env, this, prefixID);
181 jbyteArray suffixh = (*env)->GetObjectField(env, this, suffixID);
182 jbyteArray outCodeh = (*env)->GetObjectField(env, this, outCodeID);
203 JNU_ThrowNullPointerException(env, 0);
206 if (((*env)->GetArrayLength(env, prefixh) != 4096) ||
207 ((*env)->GetArrayLength(env, suffixh) != 4096) ||
208 ((*env)->GetArrayLength(env, outCodeh) != OUTCODELENGTH))
210 JNU_ThrowArrayIndexOutOfBoundsException(env, 0);
236 (*env)->CallIntMethod(env, this, sendID,
250 len = (*env)->CallIntMethod(env, this, readID,
252 if ((*env)->ExceptionOccurred(env)) {
325 if ((*env)->CallIntMethod(env, this, readID,
327 || (*env)->ExceptionOccurred(env))
330 return (!(*env)->ExceptionOccurred(env));
421 count = (*env)->CallIntMethod(env, this, sendID,
425 if (count <= 0 || (*env)->ExceptionOccurred(env)) {