Home
last modified time | relevance | path

Searched defs:methods (Results 1 – 25 of 45) sorted by relevance

12

/art/test/497-inlining-and-class-loader/
Dclear_dex_cache.cc37 ArtMethod** methods = dex_cache->GetResolvedMethods(); in Java_Main_cloneResolvedMethods() local
62 ArtMethod** methods = soa.Decode<mirror::Class>(cls)->GetDexCache()->GetResolvedMethods(); in Java_Main_restoreResolvedMethods() local
/art/runtime/
Dimtable_test.cc93 std::pair<ArtMethod*, ArtMethod*> methods = LoadMethods("LInterfaces$A;", "foo"); in TEST_F() local
100 std::pair<ArtMethod*, ArtMethod*> methods = LoadMethods("LInterfaces$Z;", "foo"); in TEST_F() local
Dnative_bridge_art_interface.cc56 static uint32_t GetNativeMethods(JNIEnv* env, jclass clazz, JNINativeMethod* methods, in GetNativeMethods()
Djni_internal_test.cc326 JNINativeMethod methods[] = { }; in RegisterAndUnregisterNativesBadArguments() local
652 JNINativeMethod methods[] = { { method_name, method_sig, native_fnptr } }; in SetUpForTest() local
980 JNINativeMethod methods[] = { { nullptr, "()V", native_function } }; in TEST_F() local
987 JNINativeMethod methods[] = { { "notify", nullptr, native_function } }; in TEST_F() local
994 JNINativeMethod methods[] = { { "notify", "()V", nullptr } }; in TEST_F() local
1001 JNINativeMethod methods[] = { { "foo", "()V", native_function } }; in TEST_F() local
1008 JNINativeMethod methods[] = { { "equals", "(Ljava/lang/Object;)Z", native_function } }; in TEST_F() local
1016 JNINativeMethod methods[] = { { "notify", "()V", native_function } }; in TEST_F() local
1024 JNINativeMethod methods[] = { }; in TEST_F() local
1033 JNINativeMethod methods[] = { }; in TEST_F() local
Dimage.cc168 const ImageSection& methods = GetMethodsSection(); in VisitPackedArtMethods() local
/art/test/626-set-resolved-string/src/
DMain.java25 Method[] methods = Main.class.getDeclaredMethods(); in main() local
/art/compiler/debug/
Delf_compilation_unit.h28 std::vector<const MethodDebugInfo*> methods; member
/art/test/044-proxy/src/
DNarrowingTest.java50 Method[] methods = proxy.getClass().getDeclaredMethods(); in main() local
DBasicTest.java75 Method[] methods = proxy.getClass().getDeclaredMethods(); in main() local
/art/runtime/native/
Djava_lang_reflect_Proxy.cc30 jobject loader, jobjectArray methods, jobjectArray throws) { in Proxy_generateProxy()
/art/test/800-smali/src/
DMain.java203 Method[] methods = c.getDeclaredMethods(); in runTest() local
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DClassDataItem.java97 private void incrementEncodedMethods(int insertedIdx, EncodedMethod[] methods) { in incrementEncodedMethods()
/art/runtime/mirror/
Dclass_ext.cc41 void ClassExt::SetObsoleteArrays(ObjPtr<PointerArray> methods, in SetObsoleteArrays()
Dclass-inl.h171 LengthPrefixedArray<ArtMethod>* methods = GetMethodsPtr(); in GetVirtualMethodsSliceUnchecked() local
186 LengthPrefixedArray<ArtMethod>* methods = GetMethodsPtr(); in GetCopiedMethodsSliceUnchecked() local
202 LengthPrefixedArray<ArtMethod>* methods = GetMethodsPtr(); in GetMethodsSlice() local
212 LengthPrefixedArray<ArtMethod>* methods = GetMethodsPtr(); in NumMethods() local
1076 LengthPrefixedArray<ArtMethod>* methods = GetMethodsPtr(); in FixupNativePointers() local
Ddex_cache.cc67 ArtMethod** methods = (dex_file->NumMethodIds() == 0u) ? nullptr : in InitializeDexCache() local
/art/test/088-monitor-verification/src/
DMain.java232 Method[] methods = c.getDeclaredMethods(); in runTest() local
/art/compiler/
Dverifier_deps_test.cc1349 std::set<VerifierDeps::MethodResolution>* methods = GetMethods(deps, resolution_kind); in TEST_F() local
1368 std::set<VerifierDeps::MethodResolution>* methods = GetMethods(deps, resolution_kind); in TEST_F() local
1388 std::set<VerifierDeps::MethodResolution>* methods = GetMethods(deps, resolution_kind); in TEST_F() local
1407 std::set<VerifierDeps::MethodResolution>* methods = GetMethods(deps, resolution_kind); in TEST_F() local
1434 std::set<VerifierDeps::MethodResolution>* methods = GetMethods(deps, resolution_kind); in TEST_F() local
1454 std::set<VerifierDeps::MethodResolution>* methods = GetMethods(deps, resolution_kind); in TEST_F() local
/art/runtime/jit/
Dprofile_saver.cc186 GetMethodsVisitor(std::vector<MethodReference>* methods, uint32_t startup_method_samples) in GetMethodsVisitor()
222 std::vector<MethodReference> methods; in FetchAndCacheResolvedClassesAndMethods() local
Dprofile_compilation_info_test.cc52 std::vector<ArtMethod*> methods; in GetVirtualMethods() local
87 const std::vector<ArtMethod*>& methods, in SaveProfilingInfo()
117 const std::vector<ArtMethod*>& methods, in SaveProfilingInfoWithFakeInlineCaches()
/art/test/910-methods/src/art/
DTest910.java117 Method methods[] = NestedSynthetic.class.getDeclaredMethods(); in findSyntheticMethod() local
/art/test/901-hello-ti-agent/
Dbasics.cc167 jmethodID* methods = nullptr; in CallJvmtiFunction() local
/art/test/ti-agent/
Djni_binder.cc234 jmethodID* methods; in BindFunctionsOnClass() local
/art/profman/
Dprofman.cc428 std::set<uint16_t> methods; in GetClassNamesAndMethods() local
719 std::vector<ProfileMethodInfo> methods; in ProcessLine() local
/art/tools/dmtracedump/
Dtracedump.cc149 struct MethodEntry** methods; /* list of methods in this class */ member
156 struct MethodEntry** methods; /* list of methods with same name */ member
191 MethodEntry* methods; /* 2 extra methods: "toplevel" and "unknown" */ member
2267 int32_t findMatch(MethodEntry** methods, int32_t size, MethodEntry* matchThis) { in findMatch()
2609 MethodEntry** methods = parseMethodEntries(dataKeys); in main() local
/art/runtime/openjdkjvmti/
Dti_redefine.cc884 void SetOldObsoleteMethods(jint klass_index, art::mirror::PointerArray* methods) in SetOldObsoleteMethods()
1039 void SetOldObsoleteMethods(art::mirror::PointerArray* methods) in SetOldObsoleteMethods()
1423 art::mirror::PointerArray* methods = ext->GetObsoleteMethods(); in RestoreObsoleteMethodMapsIfUnneeded() local

12