/frameworks/base/cmds/system_server/library/ |
system_init.cpp | 97 jmethodID methodId = env->GetStaticMethodID(clazz, "init2", "()V"); 98 if (methodId == NULL) { 101 env->CallStaticVoidMethod(clazz, methodId);
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
FindUsages.java | 24 import com.android.dx.io.MethodId; 92 int methodId = one.getIndex(); 93 if (methodIds.contains(methodId)) { 94 out.println(location() + ": method reference " + dex.methodIds().get(methodId) 104 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex()); 105 return className + "." + dex.strings().get(methodId.getNameIndex()); 177 for (MethodId method : dex.methodIds()) {
|
/dalvik/dx/src/com/android/dx/merge/ |
InstructionTransformer.java | 94 int methodId = one.getIndex(); 95 int mappedId = indexMap.adjustMethod(methodId); 96 jumboCheck(methodId, mappedId);
|
/dalvik/vm/jdwp/ |
Jdwp.h | 41 typedef u4 MethodId; /* any kind of method, including constructors */ 51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); } 56 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); } 63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { 83 MethodId methodId; /* method in which "idx" resides */
|
JdwpHandler.cpp | 49 pLoc->methodId = dvmReadMethodId(pBuf); 60 expandBufAddMethodId(pReply, pLoc->methodId); 104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, 112 LOGV(" classId=%llx methodId=%x %s.%s", 113 classId, methodId, 115 dvmDbgGetMethodName(classId, methodId)); 140 JdwpError err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId, 308 expandBufAdd4BE(pReply, sizeof(MethodId)); 756 MethodId methodId = dvmReadMethodId(&buf) [all...] |
/external/webkit/Source/WebCore/bridge/jni/ |
JNIUtility.cpp | 355 jmethodID methodId = getMethodID(object, name, signature); 359 callJNIMethodIDA<void>(object, methodId, args); 365 result.l = callJNIMethodIDA<jobject>(object, methodId, args); 368 result.z = callJNIMethodIDA<jboolean>(object, methodId, args); 371 result.b = callJNIMethodIDA<jbyte>(object, methodId, args); 374 result.c = callJNIMethodIDA<jchar>(object, methodId, args); 377 result.s = callJNIMethodIDA<jshort>(object, methodId, args); 380 result.i = callJNIMethodIDA<jint>(object, methodId, args); 383 result.j = callJNIMethodIDA<jlong>(object, methodId, args); 386 result.f = callJNIMethodIDA<jfloat>(object, methodId, args) [all...] |
/frameworks/base/media/jni/mediaeditor/ |
VideoEditorJava.cpp | 180 jmethodID methodId = pEnv->GetMethodID(clazz, pName, pType); 186 if (NULL != methodId) 189 (*pMethodId) = methodId; 849 &pClass->pMethods[index].methodId); 891 pIds->methodIds[index] = pClass->pMethods[index].methodId;
|
VideoEditorJava.h | 338 jmethodID methodId;
|
/external/javassist/src/main/javassist/tools/rmi/ |
AppletServer.java | 150 int methodId = in.readInt(); 157 rvalue = convertRvalue(eo.methods[methodId].invoke(eo.object,
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
JavaInstanceJSC.cpp | 198 jmethodID methodId = getMethodID(obj, jMethod->name().utf8().data(), jMethod->signature()); 199 handled = dispatchJNICall(exec, rootObject->nativeHandle(), obj, jMethod->isStatic(), jMethod->returnType(), methodId, jArgs.data(), result, callingURL, exceptionDescription);
|
/dalvik/tools/dmtracedump/ |
CreateTestTrace.c | 71 unsigned int methodId; 385 unsigned int methodId = 0; 387 if (pRecord->methodId) 389 unsigned int id = ++methodId << 2; 390 pRecord->methodId = id; 396 if (pNext->methodId) 399 pNext->methodId = id; 403 pRecord->methodId, pRecord->fullName); 406 pRecord->methodId, pRecord->className, 410 pRecord->methodId, pRecord->className [all...] |
TraceDump.c | 162 unsigned int methodId; 300 void initMethodEntry(MethodEntry *method, unsigned int methodId, 305 method->methodId = methodId; 348 unsigned int idA = methodA->methodId; 349 unsigned int idB = methodB->methodId; 387 unsigned int idA = methodA->methodId; 388 unsigned int idB = methodB->methodId; 428 unsigned int idA = methodA->methodId; 429 unsigned int idB = methodB->methodId; [all...] |
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
DexData.java | 411 MethodIdItem methodId = mMethodIds[i]; 413 classNameFromTypeIndex(methodId.classIdx), 414 argArrayFromProtoIndex(methodId.protoIdx), 415 returnTypeFromProtoIndex(methodId.protoIdx), 416 mStrings[methodId.nameIdx]);
|
/frameworks/base/core/jni/ |
AndroidRuntime.cpp | 286 jmethodID methodId; 295 methodId = env->GetStaticMethodID(clazz, "main", "([Ljava/lang/String;)V"); 296 if (methodId == NULL) { 316 env->CallStaticVoidMethod(clazz, methodId, strArray); [all...] |
/sdk/traceview/src/com/android/traceview/ |
DmTraceReader.java | 176 int methodId; 189 methodId = buffer.getInt(); 218 int methodAction = methodId & 0x03; 219 methodId = methodId & ~0x03; 220 MethodData methodData = mMethodMap.get(methodId); 222 String name = String.format("(0x%1$x)", methodId); //$NON-NLS-1$ 223 methodData = new MethodData(methodId, name); 224 mMethodMap.put(methodId, methodData);
|
/dalvik/dx/junit-tests/com/android/dx/gen/ |
DexGeneratorTest.java | 51 private static MethodId<Callable, Object> CALL = CALLABLE.getMethod(Type.OBJECT, "call"); 75 MethodId<?, Constructable> methodId = GENERATED.getMethod( 77 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); 80 MethodId<Constructable, Void> constructor 107 MethodId<?, Integer> methodId = GENERATED.getMethod(Type.INT, "call", Type.INT); 108 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); 111 MethodId<?, Integer> staticMethod 131 MethodId<?, Integer> methodId = GENERATED.getMethod(Type.INT, "call", TEST_TYPE, Type.INT) [all...] |
/prebuilt/common/ecj/ |
ecj.jar | |