Lines Matching defs:components

73     jboolean *components;
75 components = newComponents(out, length, sizeof(jboolean));
76 if (components != NULL) {
78 JNI_FUNC_PTR(env,GetBooleanArrayRegion)(env, array, index, length, components);
80 (void)outStream_writeBoolean(out, components[i]);
82 deleteComponents(components);
90 jbyte *components;
92 components = newComponents(out, length, sizeof(jbyte));
93 if (components != NULL) {
95 JNI_FUNC_PTR(env,GetByteArrayRegion)(env, array, index, length, components);
97 (void)outStream_writeByte(out, components[i]);
99 deleteComponents(components);
107 jchar *components;
109 components = newComponents(out, length, sizeof(jchar));
110 if (components != NULL) {
112 JNI_FUNC_PTR(env,GetCharArrayRegion)(env, array, index, length, components);
114 (void)outStream_writeChar(out, components[i]);
116 deleteComponents(components);
124 jshort *components;
126 components = newComponents(out, length, sizeof(jshort));
127 if (components != NULL) {
129 JNI_FUNC_PTR(env,GetShortArrayRegion)(env, array, index, length, components);
131 (void)outStream_writeShort(out, components[i]);
133 deleteComponents(components);
141 jint *components;
143 components = newComponents(out, length, sizeof(jint));
144 if (components != NULL) {
146 JNI_FUNC_PTR(env,GetIntArrayRegion)(env, array, index, length, components);
148 (void)outStream_writeInt(out, components[i]);
150 deleteComponents(components);
158 jlong *components;
160 components = newComponents(out, length, sizeof(jlong));
161 if (components != NULL) {
163 JNI_FUNC_PTR(env,GetLongArrayRegion)(env, array, index, length, components);
165 (void)outStream_writeLong(out, components[i]);
167 deleteComponents(components);
175 jfloat *components;
177 components = newComponents(out, length, sizeof(jfloat));
178 if (components != NULL) {
180 JNI_FUNC_PTR(env,GetFloatArrayRegion)(env, array, index, length, components);
182 (void)outStream_writeFloat(out, components[i]);
184 deleteComponents(components);
192 jdouble *components;
194 components = newComponents(out, length, sizeof(jdouble));
195 if (components != NULL) {
197 JNI_FUNC_PTR(env,GetDoubleArrayRegion)(env, array, index, length, components);
199 (void)outStream_writeDouble(out, components[i]);
201 deleteComponents(components);