HomeSort by relevance Sort by last modified time
    Searched refs:methodId (Results 1 - 25 of 48) sorted by null

1 2

  /external/lzma/CPP/7zip/Common/
CreateCoder.h 10 #include "MethodId.h"
65 const UString &name, CMethodId &methodId, UInt32 &numInStreams, UInt32 &numOutStreams);
69 CMethodId methodId, UString &name);
74 CMethodId methodId,
82 CMethodId methodId,
89 CMethodId methodId,
94 CMethodId methodId,
CreateCoder.cpp 92 CMethodId &methodId, UInt32 &numInStreams, UInt32 &numOutStreams)
100 methodId = codec.Id;
113 methodId = codec.Id;
127 CMethodId methodId, UString &name)
133 if (methodId == codec.Id)
144 if (methodId == codec.Id)
156 CMethodId methodId,
167 if (codec.Id == methodId)
199 if (codec.Id == methodId)
256 CMethodId methodId,
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RemoteMethodCallMessage.java 58 public short methodId;
76 sb.append("RemoteMethodCallMessage[objectID=").append(objectId).append(", methodID=")
77 .append(methodId);
ObjectStore.java 211 short methodId = methodIdInt.shortValue();
213 call.methodId = methodId;
276 if (call.methodId < 0 || call.methodId >= localObj.methods.length)
280 Method method = localObj.methods[call.methodId];
RmiSerializer.java 180 buffer.putShort(call.methodId);
204 call.methodId = buffer.getShort();
  /sdk/emulator/qtools/
dmtrace.h 22 void addFunctionEntry(int methodId, uint32_t cycle, uint32_t pid);
23 void addFunctionExit(int methodId, uint32_t cycle, uint32_t pid);
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 55 private static MethodId<Callable, Object> CALL = CALLABLE.getMethod(TypeId.OBJECT, "call");
79 MethodId<?, Constructable> methodId = GENERATED.getMethod(
81 Code code = dexMaker.declare(methodId, PUBLIC | STATIC);
84 MethodId<Constructable, Void> constructor
109 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call");
110 Code code = dexMaker.declare(methodId, PUBLIC);
128 MethodId<?, Integer> methodId = GENERATED.getMethod(TypeId.INT, "call", TypeId.INT)
    [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 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...]
  /libcore/luni/src/main/native/
java_io_ObjectStreamClass.cpp 54 static jobject ObjectStreamClass_newInstance(JNIEnv* env, jclass, jclass instantiationClass, jlong methodId) {
55 return env->NewObject(instantiationClass, reinterpret_cast<jmethodID>(methodId));
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 23 import com.android.dex.MethodId;
91 int methodId = one.getIndex();
92 if (methodIds.contains(methodId)) {
93 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
103 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
104 return className + "." + dex.strings().get(methodId.getNameIndex());
176 for (MethodId method : dex.methodIds()) {
  /dalvik/dx/src/com/android/dx/command/grep/
Grep.java 23 import com.android.dex.MethodId;
78 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
79 return className + "." + dex.strings().get(methodId.getNameIndex());
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 98 int methodId = one.getIndex();
99 int mappedId = indexMap.adjustMethod(methodId);
IndexMap.java 45 import com.android.dex.MethodId;
192 public MethodId adjust(MethodId methodId) {
193 return new MethodId(target,
194 adjustType(methodId.getDeclaringClassIndex()),
195 adjustProto(methodId.getProtoIndex()),
196 adjustString(methodId.getNameIndex()));
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 22 import com.android.dex.MethodId;
85 for (MethodId methodId : dex.methodIds()) {
86 System.out.println("methodId " + index + ": " + methodId);
  /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]);
  /dalvik/vm/jdwp/
JdwpHandler.cpp 49 pLoc->methodId = dvmReadMethodId(pBuf);
60 expandBufAddMethodId(pReply, pLoc->methodId);
104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
112 ALOGV(" 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));
757 MethodId methodId = dvmReadMethodId(&buf)
    [all...]
JdwpEvent.cpp 450 pLoc1->methodId == pLoc2->methodId &&
875 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId),
    [all...]
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 */
  /frameworks/base/media/jni/mediaeditor/
VideoEditorJava.cpp 182 jmethodID methodId = pEnv->GetMethodID(clazz, pName, pType);
188 if (NULL != methodId)
191 (*pMethodId) = methodId;
854 &pClass->pMethods[index].methodId);
896 pIds->methodIds[index] = pClass->pMethods[index].methodId;
  /external/lzma/C/
XzDec.c 56 UInt32 methodId;
77 if (p->methodId == XZ_ID_Delta)
88 switch(p->methodId)
118 if (p->methodId == XZ_ID_Delta)
164 switch(p->methodId)
213 decoder->methodId = (UInt32)id;
359 SRes MixCoder_SetFromMethod(CMixCoder *p, int coderIndex, UInt64 methodId)
362 p->ids[coderIndex] = methodId;
363 switch(methodId)
372 return BraState_SetFromMethod(sc, methodId, p->alloc);
    [all...]
  /external/javassist/src/main/javassist/tools/rmi/
AppletServer.java 150 int methodId = in.readInt();
157 rvalue = convertRvalue(eo.methods[methodId].invoke(eo.object,
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.cpp 381 int32_t methodId;
382 status_t ret = request.readInt32(&methodId);
388 switch (methodId) {
  /dalvik/vm/
Debugger.h 200 const char* dvmDbgGetMethodName(RefTypeId refTypeId, MethodId id);
206 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId,
208 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId id,
286 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
  /hardware/ti/wpan/tools/FM/service/src/jni/
JFmTxNative.cpp     [all...]

Completed in 1471 milliseconds

1 2