/art/tools/dexfuzz/src/dexfuzz/program/ |
D | IdCreator.java | 86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) { in findMethodIdInsertionPoint() argument 87 int classIdx = findTypeId(className); in findMethodIdInsertionPoint() 113 private int findTypeIdInsertionPoint(String className) { in findTypeIdInsertionPoint() argument 114 int descriptorIdx = findString(className); in findTypeIdInsertionPoint() 142 private int findFieldIdInsertionPoint(String className, String typeName, String fieldName) { in findFieldIdInsertionPoint() argument 143 int classIdx = findTypeId(className); in findFieldIdInsertionPoint() 169 private int createMethodId(String className, String methodName, String signature) { in createMethodId() argument 180 int typeIdIdx = findOrCreateTypeId(className); in createMethodId() 194 int newMethodIdIdx = findMethodIdInsertionPoint(className, methodName, signature); in createMethodId() 208 className, methodName, signature, newMethodIdIdx)); in createMethodId() [all …]
|
D | Program.java | 261 String className = ""; in associateCodeItemsWithMethodNames() local 265 className = rawDexFile.stringDatas.get(typeIdItem.descriptorIdx).getString() + "."; in associateCodeItemsWithMethodNames() 274 methodIdx = associateMethod(method, methodIdx, className); in associateCodeItemsWithMethodNames() 279 methodIdx = associateMethod(method, methodIdx, className); in associateCodeItemsWithMethodNames() 291 private int associateMethod(EncodedMethod method, int methodIdx, String className) { in associateMethod() argument 306 String methodName = className in associateMethod()
|
/art/test/121-modifiers/src/ |
D | Main.java | 84 private static void check(String className) throws Exception { in check() argument 85 Class<?> clazz = Class.forName(className); in check() 86 if (className.equals("Inf")) { in check() 94 throw new RuntimeException("Undefined bits for an interface: " + className); in check() 104 throw new RuntimeException("Undefined bits for a class: " + className); in check()
|
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | NewMethodCaller.java | 48 public String className; field in NewMethodCaller.AssociatedMutation 66 className, in getString() 78 className = elements[4]; in parseString() 129 mutation.className = "Ljava/lang/System;"; in generateMutation() 168 .findOrCreateMethodId(mutation.className, in applyMutation() 180 mutation.className, mutation.methodName, mutation.signature, insertionPoint)); in applyMutation()
|
/art/runtime/ |
D | reference_table.cc | 91 std::string className(PrettyTypeOf(obj)); in DumpSummaryLine() local 95 className = "java.lang.Class"; in DumpSummaryLine() 98 StringAppendF(&className, " (%zd elements)", element_count); in DumpSummaryLine() 102 std::string msg(StringPrintf("%5zd of %s", total, className.c_str())); in DumpSummaryLine() 181 std::string className(PrettyTypeOf(ref)); in Dump() local 196 os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n"; in Dump()
|
D | jni_internal.h | 24 #define NATIVE_METHOD(className, functionName, signature) \ argument 25 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
|
D | proxy_test.cc | 35 const char* className, in GenerateProxyClass() argument 95 soa, soa.Env()->NewStringUTF(className), proxyClassInterfaces, jclass_loader, in GenerateProxyClass()
|
/art/runtime/native/ |
D | java_lang_Object.cc | 25 #define NATIVE_METHOD(className, functionName, signature, identifier) \ argument 26 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
|
/art/test/071-dexfile/src/ |
D | Main.java | 102 String className = e.nextElement(); in testDexFile() local 103 System.out.println(className); in testDexFile()
|
/art/runtime/jdwp/ |
D | jdwp_event.cc | 124 std::string className; /* ClassMatch/ClassExclude */ member 476 if (!PatternMatch(pMod->classMatch.classPattern, basket.className)) { in ModsMatch() 481 if (PatternMatch(pMod->classMatch.classPattern, basket.className)) { in ModsMatch() 840 basket.className = Dbg::GetClassName(basket.locationClass.Get()); in PostLocationEvent() 863 VLOG(jdwp) << "Not checking breakpoints during invoke (" << basket.className << ")"; in PostLocationEvent() 938 basket.className = Dbg::GetClassName(basket.locationClass.Get()); in PostFieldEvent() 942 VLOG(jdwp) << "Not posting field event during invoke (" << basket.className << ")"; in PostFieldEvent() 1119 basket.className = Dbg::GetClassName(basket.locationClass.Get()); in PostException() 1126 VLOG(jdwp) << "Not posting exception hit during invoke (" << basket.className << ")"; in PostException() 1195 basket.className = Dbg::GetClassName(basket.locationClass.Get()); in PostClassPrepare() [all …]
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 68 static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className, in UnstartedRuntimeFindClass() argument 73 CHECK(className.Get() != nullptr); in UnstartedRuntimeFindClass() 74 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str())); in UnstartedRuntimeFindClass()
|