Home
last modified time | relevance | path

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

12

/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/test/671-npe-field-opts/src/
DMain.java59 static void check(NullPointerException npe, int mainLine, int methodLine, String methodName) { in check() argument
61 checkElement(trace[0], "Main", methodName, "Main.java", methodLine); in check()
66 String declaringClass, String methodName, in checkElement() argument
69 assertEquals(methodName, element.getMethodName()); in checkElement()
/art/test/674-hiddenapi/src-ex/
DJLI.java78 MethodHandles.Lookup lookup, Class<?> klass, String methodName, MethodType methodType) { in canDiscoverWithLookupFindVirtual() argument
80 return lookup.findVirtual(klass, methodName, methodType) != null; in canDiscoverWithLookupFindVirtual()
89 MethodHandles.Lookup lookup, Class<?> klass, String methodName, MethodType methodType) { in canDiscoverWithLookupFindStatic() argument
91 return lookup.findStatic(klass, methodName, methodType) != null; in canDiscoverWithLookupFindStatic()
/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()
DNewInstanceChanger.java184 String methodName = mutatableCode.program.getMethodString((int) oldMethodIdx); in changeInvokeDirect() local
191 findOrCreateMethodId(className, methodName, shorty); in changeInvokeDirect()
/art/test/674-hotness-compiled/src/
DMain.java44 public static native int getHotnessCounter(Class<?> cls, String methodName); in getHotnessCounter() argument
45 public static native boolean isAotCompiled(Class<?> cls, String methodName); in isAotCompiled() argument
/art/test/667-jit-jni-stub/src/
DMain.java174 public native static void callThrough(Class<?> cls, String methodName); in callThrough() argument
179 public native static boolean isAotCompiled(Class<?> cls, String methodName); in isAotCompiled() argument
180 public native static boolean hasJitCompiledEntrypoint(Class<?> cls, String methodName); in hasJitCompiledEntrypoint() argument
181 public native static boolean hasJitCompiledCode(Class<?> cls, String methodName); in hasJitCompiledCode() argument
/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/570-checker-osr/src/
DMain.java279 public static native boolean isInOsrCode(String methodName); in isInOsrCode() argument
280 public static native boolean isInInterpreter(String methodName); in isInInterpreter() argument
281 public static native void ensureHasProfilingInfo(String methodName); in ensureHasProfilingInfo() argument
282 public static native void ensureHasOsrCode(String methodName); in ensureHasOsrCode() argument
/art/test/910-methods/src/art/
DTest910.java41 private static void testMethod(String className, String methodName, Class<?>... types) in testMethod() argument
44 testMethod(base, methodName, types); in testMethod()
47 private static void testMethod(Class<?> base, String methodName, Class<?>... types) in testMethod() argument
49 Method m = base.getDeclaredMethod(methodName, types); in testMethod()
/art/test/667-jit-jni-stub/
Djit_jni_stub_test.cc41 void Java_Main_callThrough(JNIEnv* env, jclass, jclass klass, jstring methodName) { in Java_Main_callThrough() argument
43 std::string name = soa.Decode<mirror::String>(methodName)->ToModifiedUtf8(); in Java_Main_callThrough()
/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 …]
/art/test/629-vdex-speed/src/
DMain.java25 private native static boolean isAotCompiled(Class<?> cls, String methodName); in isAotCompiled() argument
/art/test/708-jit-cache-churn/src/
DMain.java30 static native void ensureJitCompiled(Class<?> klass, String methodName); in ensureJitCompiled() argument
/art/test/655-jit-clinit/src/
DMain.java26 public native static boolean hasJitCompiledEntrypoint(Class<?> cls, String methodName); in hasJitCompiledEntrypoint() argument
/art/test/652-deopt-intrinsic/src/
DMain.java47 public static native void ensureJitCompiled(Class<?> cls, String methodName); in ensureJitCompiled() argument
/art/dexlist/
Ddexlist.cc108 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpMethod() local
116 strcmp(gOptions.methodToFind, methodName) != 0)) { in dumpMethod()
136 className.get(), methodName, typeDesc, fileName, firstLine); in dumpMethod()
/art/tools/breakpoint-logger/
DREADME.md17 > `:class_descriptor:->:methodName::method_sig:@:breakpoint_location:,[...]`
35 …64/libopenjdkjvmti.so '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/ja…
41 > `java '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/helloworld/cla…
/art/test/636-wrong-static-access/src/
DMain.java38 public static native void ensureJitCompiled(Class<?> cls, String methodName); in ensureJitCompiled() argument
/art/test/597-deopt-busy-loop/src/
DMain.java26 private static native void ensureJitCompiled(Class<?> cls, String methodName); in ensureJitCompiled() argument
/art/test/661-classloader-allocator/src/
DMain.java58 public static native void ensureJitCompiled(Class<?> cls, String methodName); in ensureJitCompiled() argument
/art/test/712-varhandle-invocations/src/
DVarHandleReflectiveTest.java40 VarHandle.class.getMethod(accessMode.methodName(), Object[].class); in doTest()
/art/test/597-deopt-invoke-stub/src/
DMain.java26 private static native void ensureJitCompiled(Class<?> cls, String methodName); in ensureJitCompiled() argument

12