HomeSort by relevance Sort by last modified time
    Searched refs:jArgs (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/bridge/jni/v8/
JavaInstanceV8.cpp 94 jvalue* jArgs = 0;
96 jArgs = static_cast<jvalue*>(malloc(count * sizeof(jvalue)));
100 jArgs[i] = convertNPVariantToJValue(args[i], aParameter->getJNIType(), aParameter->type());
111 callJNIMethodIDA<void>(obj, jMethod->methodID(obj), jArgs);
114 result.l = callJNIMethodIDA<jobject>(obj, jMethod->methodID(obj), jArgs);
117 result.z = callJNIMethodIDA<jboolean>(obj, jMethod->methodID(obj), jArgs);
120 result.b = callJNIMethodIDA<jbyte>(obj, jMethod->methodID(obj), jArgs);
123 result.c = callJNIMethodIDA<jchar>(obj, jMethod->methodID(obj), jArgs);
126 result.s = callJNIMethodIDA<jshort>(obj, jMethod->methodID(obj), jArgs);
129 result.i = callJNIMethodIDA<jint>(obj, jMethod->methodID(obj), jArgs);
    [all...]
  /external/webkit/WebCore/bridge/jni/jsc/
JavaInstanceJSC.cpp 125 jvalue* jArgs;
152 jArgs = (jvalue*)malloc(count * sizeof(jvalue));
154 jArgs = 0;
158 jArgs[i] = convertValueToJValue(exec, args.at(i), aParameter->getJNIType(), aParameter->type());
176 handled = dispatchJNICall(exec, rootObject->nativeHandle(), obj, jMethod->isStatic(), jMethod->JNIReturnType(), jMethod->methodID(obj), jArgs, result, callingURL, exceptionDescription);
179 free(jArgs);
190 callJNIMethodIDA<void>(obj, jMethod->methodID(obj), jArgs);
193 result.l = callJNIMethodIDA<jobject>(obj, jMethod->methodID(obj), jArgs);
196 result.z = callJNIMethodIDA<jboolean>(obj, jMethod->methodID(obj), jArgs);
199 result.b = callJNIMethodIDA<jbyte>(obj, jMethod->methodID(obj), jArgs);
    [all...]

Completed in 64 milliseconds