Home
last modified time | relevance | path

Searched refs:jArgs (Results 1 – 2 of 2) sorted by relevance

/external/webkit/V8Binding/jni/
Djni_instance.cpp67 jvalue *jArgs; in invokeMethod() local
97 jArgs = (jvalue *)malloc (count * sizeof(jvalue)); in invokeMethod()
100 jArgs = 0; in invokeMethod()
104 jArgs[i] = convertNPVariantToJValue(args[i], aParameter->getJNIType(), aParameter->type()); in invokeMethod()
115 callJNIMethodIDA<void>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
118 result.l = callJNIMethodIDA<jobject>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
121 result.z = callJNIMethodIDA<jboolean>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
124 result.b = callJNIMethodIDA<jbyte>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
127 result.c = callJNIMethodIDA<jchar>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
130 result.s = callJNIMethodIDA<jshort>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
[all …]
/external/webkit/WebCore/bridge/jni/
Djni_instance.cpp114 jvalue *jArgs; in invokeMethod() local
141 jArgs = (jvalue *)malloc (count * sizeof(jvalue)); in invokeMethod()
144 jArgs = 0; in invokeMethod()
148jArgs[i] = convertValueToJValue(exec, args.at(i), aParameter->getJNIType(), aParameter->type()); in invokeMethod()
166 …j, jMethod->isStatic(), jMethod->JNIReturnType(), jMethod->methodID(obj), jArgs, result, callingUR… in invokeMethod()
169 free (jArgs); in invokeMethod()
180 callJNIMethodIDA<void>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
183 result.l = callJNIMethodIDA<jobject>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
186 result.z = callJNIMethodIDA<jboolean>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
189 result.b = callJNIMethodIDA<jbyte>(obj, jMethod->methodID(obj), jArgs); in invokeMethod()
[all …]