Home
last modified time | relevance | path

Searched refs:getArtMethod (Results 1 – 2 of 2) sorted by relevance

/art/test/616-cha-unloading/src-art/
DMain.java90 long artMethod = getArtMethod(lonelyMethod); in setupLoader()
119 private static native long getArtMethod(Object javaMethod); in getArtMethod() method in Main
/art/runtime/
Dhidden_api_test.cc53 class1_init_ = getArtMethod("mypackage/packagea/Class1", "<init>", "()V"); in SetUp()
54 class1_method1_ = getArtMethod("mypackage/packagea/Class1", "method1", "()V"); in SetUp()
55 class1_method1_i_ = getArtMethod("mypackage/packagea/Class1", "method1", "(I)V"); in SetUp()
56 class1_method12_ = getArtMethod("mypackage/packagea/Class1", "method12", "()V"); in SetUp()
58 class12_method1_ = getArtMethod("mypackage/packagea/Class12", "method1", "()V"); in SetUp()
60 class2_method1_ = getArtMethod("mypackage/packagea/Class2", "method1", "()V"); in SetUp()
61 class2_method1_i_ = getArtMethod("mypackage/packagea/Class2", "method1", "(I)V"); in SetUp()
63 class3_method1_ = getArtMethod("mypackage/packageb/Class3", "method1", "()V"); in SetUp()
64 class3_method1_i_ = getArtMethod("mypackage/packageb/Class3", "method1", "(I)V"); in SetUp()
67 ArtMethod* getArtMethod(const char* class_name, const char* name, const char* signature) { in getArtMethod() function in art::HiddenApiTest