Home
last modified time | relevance | path

Searched refs:method (Results 901 – 925 of 961) sorted by relevance

1...<<313233343536373839

/art/tools/hiddenapi/
DREADME.md50 Two following bit encoding is used to denote the membership of a method/field:
Dhiddenapi.cc253 for (const ClassAccessor::Method& method : klass.GetMethods()) { in ForEachDexMember() local
254 fn(DexMember(klass, method)); in ForEachDexMember()
423 for (const ClassAccessor::Method& method : dex_class.GetMethods()) { in ForEachMatchingMember() local
424 compare_member(DexMember(dex_class, method)); in ForEachMatchingMember()
/art/runtime/interpreter/mterp/x86_64/
Dmain.S663 * On-stack replacement has happened, and now we've returned from the compiled method.
718 call SYMBOL(MterpAddHotnessBatch) # (method, shadow_frame, self)
/art/openjdkjvmti/
Dti_redefine.cc2563 for (art::ArtMethod& method : mclass->GetDeclaredMethods(image_pointer_size)) { in UpdateMethods()
2564 const art::dex::StringId* new_name_id = dex_file_->FindStringId(method.GetName()); in UpdateMethods()
2566 dex_file_->GetIndexForTypeId(*dex_file_->FindTypeId(method.GetReturnTypeDescriptor())); in UpdateMethods()
2567 const auto* old_type_list = method.GetParameterTypeList(); in UpdateMethods()
2584 method.SetDexMethodIndex(dex_method_idx); in UpdateMethods()
2585 linker->SetEntryPointsToInterpreter(&method); in UpdateMethods()
2586 method.SetCodeItemOffset(dex_file_->FindCodeItemOffset(class_def, dex_method_idx)); in UpdateMethods()
2588 method.SetNotIntrinsic(); in UpdateMethods()
2979 [&](art::ArtMethod* method) REQUIRES_SHARED(art::Locks::mutator_lock_) { in UpdateClassStructurally()
2980 if (method->IsCopied()) { in UpdateClassStructurally()
[all …]
Dti_heap.cc1010 art::ArtMethod* method = thread->GetCurrentMethod(nullptr, in GetReferenceKind() local
1013 if (method != nullptr) { in GetReferenceKind()
1014 ref_info->jni_local.method = art::jni::EncodeArtMethod(method); in GetReferenceKind()
1047 art::ArtMethod* method = visitor->GetMethod(); in GetReferenceKind() local
1048 if (method != nullptr) { in GetReferenceKind()
1049 ref_info->stack_local.method = art::jni::EncodeArtMethod(method); in GetReferenceKind()
/art/libartbase/base/
Dzip_archive.cc49 return zip_entry_->method == kCompressStored; in IsUncompressed()
/art/tools/bisection_search/
DREADME.md7 method and optimization pass under the assumption that interpreter is correct.
/art/runtime/jni/
Djava_vm_ext.h93 bool ShouldTrace(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_);
/art/test/1954-pop-frame-jit/
Dexpected.txt101 Test stopped during a native method fails
110 Test stopped in a method called by native fails
/art/runtime/interpreter/mterp/arm/
Dmain.S685 * On-stack replacement has happened, and now we've returned from the compiled method.
746 bl MterpAddHotnessBatch @ (method, shadow_frame, self)
/art/runtime/
Dart_field-inl.h47 inline bool ArtField::CanBeChangedBy(ArtMethod* method) { in CanBeChangedBy() argument
49 ObjPtr<mirror::Class> referring_class(method->GetDeclaringClass()); in CanBeChangedBy()
Dart_method.h567 ALWAYS_INLINE void SetSingleImplementation(ArtMethod* method, PointerSize pointer_size) in SetSingleImplementation() argument
572 SetDataPtrSize(method, pointer_size); in SetSingleImplementation()
922 virtual void RegisterNativeMethod(ArtMethod* method,
Dhidden_api_test.cc459 ArtMethod* method = nullptr; in TEST_F() local
462 method = &m; in TEST_F()
466 ASSERT_TRUE(method != nullptr); in TEST_F()
481 MemberSignature(method->GetInterfaceMethodIfProxy(kRuntimePointerSize)).Dump(ss_method); in TEST_F()
/art/test/1955-pop-frame-jit-called/
Dexpected.txt101 Test stopped during a native method fails
110 Test stopped in a method called by native fails
/art/test/1956-pop-frame-jit-calling/
Dexpected.txt101 Test stopped during a native method fails
110 Test stopped in a method called by native fails
/art/runtime/interpreter/mterp/x86/
Dmain.S704 * On-stack replacement has happened, and now we've returned from the compiled method.
765 call SYMBOL(MterpAddHotnessBatch) # (method, shadow_frame, self)
/art/test/913-heaps/
Dheaps.cc310 if (info_.jni_local.method != nullptr) { in Java_art_Test913_followReferences()
311 jvmti_env->GetMethodName(info_.jni_local.method, &name, nullptr, nullptr); in Java_art_Test913_followReferences()
356 if (info_.stack_local.method != nullptr) { in Java_art_Test913_followReferences()
357 jvmti_env->GetMethodName(info_.stack_local.method, &name, nullptr, nullptr); in Java_art_Test913_followReferences()
/art/runtime/interpreter/
Dinterpreter_common.h132 bool UseFastInterpreterToInterpreterInvoke(ArtMethod* method)
147 ArtMethod* method,
805 ArtMethod* method = shadow_frame.GetMethod(); in ResolveString() local
807 Runtime::Current()->GetClassLinker()->ResolveString(string_idx, method); in ResolveString()
/art/test/1970-force-early-return-long/
Dexpected.txt147 Test stopped during a native method fails
163 Test stopped in a method called by native succeeds
169 Test stopped in a static method
/art/test/1968-force-early-return/
Dexpected.txt136 Test stopped during a native method fails
152 Test stopped in a method called by native succeeds
158 Test stopped in a static method
/art/test/1932-monitor-events-misc/
Dexpected.txt89 Testing the lock state if MonitorEnter throws in a native method
97 Testing the lock state if MonitorEntered throws in a native method
/art/test/993-breakpoints/src/art/
DTest993.java320 if (method.getDeclaringClass().getPackage().equals(Test993.class.getPackage())) { in BP()
323 return method.toString() + " @ <NON-DETERMINISTIC>"; in BP()
/art/compiler/optimizing/
Dgraph_visualizer.cc460 ArtMethod* method = invoke->GetResolvedMethod(); in VisitInvoke() local
466 std::string method_name = (method == nullptr) in VisitInvoke()
468 : method->PrettyMethod(kWithSignature); in VisitInvoke()
/art/test/1981-structural-redef-private-method-handles/
Dexpected.txt26 Using mh to call new private method.
/art/libdexfile/dex/
Dclass_accessor.h286 const dex::CodeItem* GetCodeItem(const Method& method) const;

1...<<313233343536373839