Home | History | Annotate | Download | only in native

Lines Matching refs:jtype

157 #define DEFINE_SET_ATTR_SCALAR(name, jtype, ctype)                           \
159 JNIEnv* env, jclass clazz, jlong handle, jstring name, jtype value) { \
161 sizeof(ctype) >= sizeof(jtype), \
170 #define DEFINE_SET_ATTR_LIST(name, jname, jtype, ctype) \
174 jtype##Array value) { \
179 /* in byte representations of the jtype and ctype */ \
185 jtype* elems = env->Get##jname##ArrayElements(value, nullptr); \
194 #define DEFINE_SET_ATTR(name, jname, jtype, ctype) \
195 DEFINE_SET_ATTR_SCALAR(name, jtype, ctype) \
196 DEFINE_SET_ATTR_LIST(name, jname, jtype, ctype)