Home
last modified time | relevance | path

Searched refs:methodName (Results 1 – 15 of 15) sorted by relevance

/art/tools/dmtracedump/
Dtracedump.cc166 const char* methodName; member
297 const char* methodName, const char* signature, const char* fileName, in initMethodEntry() argument
301 method->methodName = methodName; in initMethodEntry()
336 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedExclusive()
343 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedExclusive()
366 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedInclusive()
373 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedInclusive()
398 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareTimedMethod()
405 result = strcmp(methodA->methodName, methodB->methodName); in compareTimedMethod()
466 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareMethodNames()
[all …]
Dcreatetesttrace.cc67 char* methodName; member
212 records[nextRecord].methodName = nullptr; in parseInputFile()
223 records[nextRecord].methodName = strndup(save_cp, len); in parseInputFile()
370 if (pRecord->className == nullptr || pRecord->methodName == nullptr) { in writeKeyMethods()
375 pRecord->className, pRecord->methodName); in writeKeyMethods()
378 pRecord->className, pRecord->methodName, pRecord->signature); in writeKeyMethods()
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DNewMethodCaller.java49 public String methodName; field in NewMethodCaller.AssociatedMutation
67 methodName, in getString()
79 methodName = elements[5]; in parseString()
130 mutation.methodName = "gc"; in generateMutation()
169 mutation.methodName, mutation.signature); in applyMutation()
180 mutation.className, mutation.methodName, mutation.signature, insertionPoint)); in applyMutation()
/art/tools/checker/file_format/c1visualizer/
Dparser.py58 methodName = line.split("\"")[1].strip()
59 if not methodName:
61 state.lastMethodName = methodName
/art/test/048-reflect-v8/src/
DAnnotationTest.java195 String methodName, Class<?> annotationUseClass) { in printMethodAnnotationsByType() argument
198 m = annotationUseClass.getDeclaredMethod(methodName); in printMethodAnnotationsByType()
235 String methodName, Class<?> annotationUseClass) { in printMethodDeclaredAnnotation() argument
238 m = annotationUseClass.getDeclaredMethod(methodName); in printMethodDeclaredAnnotation()
276 Class<A> annotationClass, String methodName, Class<?> annotationUseClass) { in printMethodDeclaredAnnotationByType() argument
279 m = annotationUseClass.getDeclaredMethod(methodName); in printMethodDeclaredAnnotationByType()
/art/test/439-npe/src/
DMain.java214 static void check(NullPointerException npe, int mainLine, int medthodLine, String methodName) { in check() argument
215 System.out.println(methodName); in check()
217 checkElement(trace[0], "Main", methodName, "Main.java", medthodLine); in check()
222 String declaringClass, String methodName, in checkElement() argument
225 assertEquals(methodName, element.getMethodName()); in checkElement()
/art/test/570-checker-osr/src/
DMain.java299 public static native boolean isInOsrCode(String methodName); in isInOsrCode() argument
300 public static native boolean isInInterpreter(String methodName); in isInInterpreter() argument
301 public static native void ensureHasProfilingInfo(String methodName); in ensureHasProfilingInfo() argument
302 public static native void ensureHasOsrCode(String methodName); in ensureHasOsrCode() argument
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) { in findMethodIdInsertionPoint() argument
88 int nameIdx = findString(methodName); in findMethodIdInsertionPoint()
169 private int createMethodId(String className, String methodName, String signature) { in createMethodId() argument
185 int methodNameStringIdx = findOrCreateString(methodName); in createMethodId()
194 int newMethodIdIdx = findMethodIdInsertionPoint(className, methodName, signature); in createMethodId()
208 className, methodName, signature, newMethodIdIdx)); in createMethodId()
218 private int findMethodId(String className, String methodName, String signature) { in findMethodId() argument
223 int nameIdx = findString(methodName); in findMethodId()
248 public int findOrCreateMethodId(String className, String methodName, String shorty) { in findOrCreateMethodId() argument
249 int methodIdIdx = findMethodId(className, methodName, shorty); in findOrCreateMethodId()
[all …]
DProgram.java306 String methodName = className in associateMethod() local
312 codeItem.meta.methodName = methodName; in associateMethod()
334 if (codeItem.meta.methodName.endsWith("_MUTATE")) { in legalToMutate()
DCodeTranslator.java53 + " (" + codeItem.meta.methodName + ") to MutatableCode"); in codeItemToMutatableCode()
59 mutatableCode.name = codeItem.meta.methodName; in codeItemToMutatableCode()
/art/dexlist/
Ddexlist.cc104 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpMethod() local
112 strcmp(gOptions.methodToFind, methodName) != 0)) { in dumpMethod()
133 className, methodName, typeDesc, fileName, firstLine); in dumpMethod()
/art/test/595-profile-saving/src/
DMain.java55 public static native int ensureProfilingInfo(String methodName); in ensureProfilingInfo() argument
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DCodeItem.java40 public String methodName; field in CodeItem.MethodMetaInfo
/art/test/122-npe/src/
DMain.java566 String declaringClass, String methodName, in checkElement() argument
569 assertEquals(methodName, element.getMethodName()); in checkElement()
/art/runtime/
Dcheck_jni.cc484 std::string methodName(PrettyMethod(traceMethod, false)); in Check() local
485 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; in Check()
486 indent_ = methodName.size() + 1; in Check()
535 std::string methodName(PrettyMethod(traceMethod, false)); in CheckNonHeap() local
536 LOG(INFO) << "JNI: " << methodName << " -> " << function_name_ << "(" << msg << ")"; in CheckNonHeap()
537 indent_ = methodName.size() + 1; in CheckNonHeap()