HomeSort by relevance Sort by last modified time
    Searched defs:methodId (Results 1 - 8 of 8) sorted by null

  /dalvik/vm/jdwp/
Jdwp.h 42 typedef u4 MethodId; /* any kind of method, including constructors */
52 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
57 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); }
64 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) {
84 MethodId methodId; /* method in which "idx" resides */
JdwpHandler.c 66 pLoc->methodId = dvmReadMethodId(pBuf);
77 expandBufAddMethodId(pReply, pLoc->methodId);
121 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
135 LOGV(" classId=%llx methodId=%x %s.%s\n",
136 classId, methodId,
138 dvmDbgGetMethodName(classId, methodId));
167 err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
343 expandBufAdd4BE(pReply, sizeof(MethodId));
860 MethodId methodId
    [all...]
  /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 50 /* Size of methodId->method cache */
173 unsigned int methodId;
201 int* methodCache; /* methodId->methodIndex mapping */
202 // TODO change to map methodId->method itself
344 void initMethodEntry(MethodEntry *method, unsigned int methodId,
349 method->methodId = methodId;
392 unsigned int idA = methodA->methodId;
393 unsigned int idB = methodB->methodId;
431 unsigned int idA = methodA->methodId;
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 404 MethodIdItem methodId = mMethodIds[i];
406 classNameFromTypeIndex(methodId.classIdx),
407 argArrayFromProtoIndex(methodId.protoIdx),
408 returnTypeFromProtoIndex(methodId.protoIdx),
409 mStrings[methodId.nameIdx]);
  /frameworks/base/core/jni/
AndroidRuntime.cpp 284 jmethodID methodId;
295 methodId = env->GetStaticMethodID(clazz, methodName, "()V");
296 if (methodId == NULL) {
301 env->CallStaticVoidMethod(clazz, methodId);
311 jmethodID methodId;
325 methodId = env->GetStaticMethodID(clazz, "main", "([Ljava/lang/String;)V");
326 if (methodId == NULL) {
346 env->CallStaticVoidMethod(clazz, methodId, strArray);
    [all...]
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 95 int methodId;
103 methodId = buffer.getInt();
109 int methodAction = methodId & 0x03;
110 methodId = methodId & ~0x03;
111 MethodData methodData = mMethodMap.get(methodId);
113 String name = String.format("(0x%1$x)", methodId); // $NON-NLS-1$
114 methodData = new MethodData(methodId, name);
  /prebuilt/common/ecj/
ecj.jar 

Completed in 244 milliseconds