Searched refs:className (Results 1 - 20 of 20) sorted by relevance

/art/runtime/
H A Djni_internal.h24 #define NATIVE_METHOD(className, functionName, signature) \
25 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
30 #define OVERLOADED_NATIVE_METHOD(className, functionName, signature, identifier) \
31 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
H A Dreference_table.cc91 std::string className(PrettyTypeOf(obj));
95 className = "java.lang.Class";
98 StringAppendF(&className, " (%zd elements)", element_count);
102 std::string msg(StringPrintf("%5zd of %s", total, className.c_str()));
181 std::string className(PrettyTypeOf(ref));
203 os << StringPrintf(" %5d: ", idx) << ref << " " << className << extras << "\n";
H A Dproxy_test.cc35 const char* className,
95 soa, soa.Env()->NewStringUTF(className), proxyClassInterfaces, jclass_loader,
/art/test/497-inlining-and-class-loader/src/
H A DMain.java45 protected Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException { argument
47 if (className.equals("Level1")) {
48 return level1ClassLoader.loadClass(className);
49 } else if (className.equals("Level2")) {
51 } else if (!className.equals("LoadedByMyClassLoader")) {
53 return getParent().loadClass(className);
56 if (className != "Level1" && className != "Level2") {
57 return getParent().loadClass(className);
69 Class clazz = (Class)method.invoke(dex, className, thi
[all...]
/art/test/496-checker-inlining-and-class-loader/src/
H A DMain.java54 protected Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException { argument
56 if (className.equals("LoadedByMyClassLoader") || className.equals("FirstSeenByMyClassLoader")) {
57 System.out.println("Request for " + className);
61 if (className != "LoadedByMyClassLoader") {
62 return getParent().loadClass(className);
72 Class clazz = (Class)method.invoke(dexFile, className, this, null);
/art/tools/dexfuzz/src/dexfuzz/program/
H A DIdCreator.java86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) { argument
87 int classIdx = findTypeId(className);
113 private int findTypeIdInsertionPoint(String className) { argument
114 int descriptorIdx = findString(className);
142 private int findFieldIdInsertionPoint(String className, String typeName, String fieldName) { argument
143 int classIdx = findTypeId(className);
169 private int createMethodId(String className, String methodName, String signature) { argument
180 int typeIdIdx = findOrCreateTypeId(className);
194 int newMethodIdIdx = findMethodIdInsertionPoint(className, methodName, signature);
208 className, methodNam
218 findMethodId(String className, String methodName, String signature) argument
248 findOrCreateMethodId(String className, String methodName, String shorty) argument
256 createTypeId(String className) argument
292 findTypeId(String className) argument
313 findOrCreateTypeId(String className) argument
404 createFieldId(String className, String typeName, String fieldName) argument
455 findFieldId(String className, String typeName, String fieldName) argument
485 findOrCreateFieldId(String className, String typeName, String fieldName) argument
[all...]
H A DProgram.java261 String className = "";
265 className = rawDexFile.stringDatas.get(typeIdItem.descriptorIdx).getString() + ".";
274 methodIdx = associateMethod(method, methodIdx, className);
279 methodIdx = associateMethod(method, methodIdx, className);
291 private int associateMethod(EncodedMethod method, int methodIdx, String className) { argument
306 String methodName = className
/art/test/088-monitor-verification/src/
H A DMain.java228 private static void runTest(String className, Object[] parameters, Class<?> excType) { argument
230 Class<?> c = Class.forName(className);
245 System.out.println("Could not find test method for " + className);
247 System.out.println("Test method for " + className + " is not static.");
251 System.out.println("Expected an exception in " + className);
256 System.out.println("Did not expect exception " + exc + " for " + className);
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DNewMethodCaller.java48 public String className; field in class:NewMethodCaller.AssociatedMutation
66 className,
78 className = elements[4];
129 mutation.className = "Ljava/lang/System;";
168 .findOrCreateMethodId(mutation.className,
180 mutation.className, mutation.methodName, mutation.signature, insertionPoint));
/art/tools/ahat/src/
H A DObjectsHandler.java38 String className = query.get("class", null);
45 && (className == null
46 || AhatSnapshot.getClassName(inst.getClassObj()).equals(className))) {
H A DSiteHandler.java96 String className = AhatSnapshot.getClassName(info.classObj);
101 site.getStackId(), site.getStackDepth(), info.heap.getName(), className),
H A DInstanceUtils.java35 private static boolean isInstanceOfClass(Instance inst, String className) { argument
37 return (cls != null && className.equals(cls.getClassName()));
/art/test/542-unresolved-access-check/src/
H A DMain.java47 protected Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException { argument
48 if (className.equals("p1.OtherInP1") && !p1.PlaceHolder.entered) {
61 Class clazz = (Class)method.invoke(dex, className, this, null);
68 return getParent().loadClass(className);
/art/tools/dmtracedump/
H A Dtracedump.cc146 const char* className; member in struct:ClassEntry
165 const char* className; member in struct:MethodEntry
296 void initMethodEntry(MethodEntry* method, int64_t methodId, const char* className, argument
300 method->className = className;
334 int32_t result = strcmp(methodA->className, methodB->className);
364 int32_t result = strcmp(methodA->className, methodB->className);
396 int32_t result = strcmp(methodA->className, method
1261 const char* className = relative->className; local
1386 const char* className = method->className; local
1520 const char* className = method->className; local
1733 const char* className = pClass->className; local
1983 const char* className = method->className; local
2309 char* className = htmlEscape(method->className, classBuf, HTML_BUFSIZE); local
2408 char* className = htmlEscape(ptr->method1->className, classBuf, HTML_BUFSIZE); local
2451 char* className = htmlEscape(ptr->method1->className, classBuf, HTML_BUFSIZE); local
[all...]
H A Dcreatetesttrace.cc66 char* className; member in struct:dataRecord
211 records[nextRecord].className = nullptr;
217 if (len > 0) records[nextRecord].className = strndup(save_cp, len);
370 if (pRecord->className == nullptr || pRecord->methodName == nullptr) {
375 pRecord->className, pRecord->methodName);
378 pRecord->className, pRecord->methodName, pRecord->signature);
/art/test/121-modifiers/src/
H A DMain.java84 private static void check(String className) throws Exception { argument
85 Class<?> clazz = Class.forName(className);
86 if (className.equals("Inf")) {
94 throw new RuntimeException("Undefined bits for an interface: " + className);
104 throw new RuntimeException("Undefined bits for a class: " + className);
/art/test/071-dexfile/src/
H A DMain.java102 String className = e.nextElement();
103 System.out.println(className);
/art/dexlist/
H A Ddexlist.cc106 char* className = descriptorToDot(classDescriptor); local
111 (strcmp(gOptions.classToFind, className) != 0 ||
113 free(className);
133 className, methodName, typeDesc, fileName, firstLine);
136 free(className);
/art/runtime/jdwp/
H A Djdwp_event.cc124 std::string className; /* ClassMatch/ClassExclude */ member in struct:art::JDWP::ModBasket
476 if (!PatternMatch(pMod->classMatch.classPattern, basket.className)) {
481 if (PatternMatch(pMod->classMatch.classPattern, basket.className)) {
839 basket.className = Dbg::GetClassName(basket.locationClass.Get());
862 VLOG(jdwp) << "Not checking breakpoints during invoke (" << basket.className << ")";
937 basket.className = Dbg::GetClassName(basket.locationClass.Get());
941 VLOG(jdwp) << "Not posting field event during invoke (" << basket.className << ")";
1118 basket.className = Dbg::GetClassName(basket.locationClass.Get());
1125 VLOG(jdwp) << "Not posting exception hit during invoke (" << basket.className << ")";
1194 basket.className
[all...]
/art/runtime/interpreter/
H A Dunstarted_runtime.cc114 static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className,
119 CHECK(className.Get() != nullptr);
120 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str()));

Completed in 1431 milliseconds