Home
last modified time | relevance | path

Searched refs:method (Results 751 – 775 of 961) sorted by relevance

1...<<313233343536373839

/art/test/044-proxy/src/
DClash2.java55 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
DConstructorProxy.java49 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
/art/test/ti-agent/
Djni_binder.cc62 static std::string GetJniShortName(const std::string& class_descriptor, const std::string& method) { in GetJniShortName() argument
74 short_name += MangleForJni(method); in GetJniShortName()
78 static void BindMethod(jvmtiEnv* jvmti_env, JNIEnv* env, jclass klass, jmethodID method) { in BindMethod() argument
85 jvmtiError name_result = jvmti_env->GetMethodName(method, &name_cstr, &sig_cstr, nullptr); in BindMethod()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DSite.java139 private Site(Site parent, String method, String signature, String file, int line) { in Site() argument
141 mMethodName = method; in Site()
170 && curr.mMethodName.equals(frame.method) in getSite()
178 child = new Site(site, frame.method, frame.signature, in getSite()
/art/runtime/jit/
Dprofile_saver.cc383 for (ArtMethod& method : klass->GetMethods(kRuntimePointerSize)) { in SampleClassesAndExecutedMethods()
384 if (!method.IsNative() && !method.IsAbstract()) { in SampleClassesAndExecutedMethods()
385 DCHECK(!method.IsProxyMethod()); in SampleClassesAndExecutedMethods()
386 const uint16_t counter = method.GetCounter(); in SampleClassesAndExecutedMethods()
389 if (method.GetProfilingInfo(kRuntimePointerSize) != nullptr || in SampleClassesAndExecutedMethods()
390 method.PreviouslyWarm() || in SampleClassesAndExecutedMethods()
392 hot_methods->AddReference(method.GetDexFile(), method.GetDexMethodIndex()); in SampleClassesAndExecutedMethods()
394 sampled_methods->AddReference(method.GetDexFile(), method.GetDexMethodIndex()); in SampleClassesAndExecutedMethods()
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc297 std::string method; in formatMethod() local
299 method = std::string(smi.GetDeclaringClassInfo().GetName()) + in formatMethod()
302 method = "ERROR"; in formatMethod()
304 return string_table->Intern("+", method); in formatMethod()
345 record += ";" + formatMethod(jvmti, jni, stack_frames[i].method); in logVMObjectAlloc()
/art/runtime/
Dnterp_helpers.h29 size_t NterpGetFrameSize(ArtMethod* method)
/art/test/459-dead-phi/smali/
DEquivalentPhi.smali19 .method public static equivalentPhi([F)F
41 .end method
/art/test/978-virtual-interface/smali/
DMain.smali33 .method public static main([Ljava/lang/String;)V
50 .end method
/art/test/974-verify-interface-super/smali/
Dmain.smali19 .method public static main([Ljava/lang/String;)V
40 .end method
/art/test/592-checker-regression-bool-input/smali/
DTestCase.smali29 .method public static testCase()Z
50 .end method
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc94 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFiles() local
95 CodeItemDebugInfoAccessor code_item(*dex_file, method.GetCodeItem(), method.GetIndex()); in ProcessDexFiles()
312 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFile() local
313 CodeItemDataAccessor code_item(dex_file, method.GetCodeItem()); in ProcessDexFile()
315 ((method.GetAccessFlags() & kAccStatic) == 0) in ProcessDexFile()
320 unique_code_items.insert(method.GetCodeItemOffset()); in ProcessDexFile()
578 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFile() local
580 for (const DexInstructionPcPair& inst : method.GetInstructions()) { in ProcessDexFile()
Ddexanalyze_bytecode.cc117 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFiles() local
119 method.GetInstructionsAndData(), in ProcessDexFiles()
134 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in ProcessDexFiles() local
135 if (method.GetCodeItem() == nullptr || !visited.insert(method.GetCodeItem()).second) { in ProcessDexFiles()
140 << "Processing " << dex_file->PrettyMethod(method.GetIndex(), true); in ProcessDexFiles()
142 CodeItemDataAccessor data = method.GetInstructionsAndData(); in ProcessDexFiles()
363 const dex::MethodId& method = dex_file.GetMethodId(method_idx); in ProcessCodeItem() local
364 const dex::TypeIndex receiver_type = method.class_idx_; in ProcessCodeItem()
/art/test/989-method-trace-throw/
Dinfo.txt1 Tests method tracing in JVMTI
/art/test/988-method-trace/
Dinfo.txt1 Tests method tracing in JVMTI
/art/test/135-MirandaDispatch/
Dinfo.txt3 java.lang.IncompatibleClassChangeError: The method 'void Main$TheInterface.m()' was expected to be …
/art/dexdump/
Ddexdump_cfg.cc36 void DumpMethodCFG(const ClassAccessor::Method& method, std::ostream& os) { in DumpMethodCFG() argument
37 const DexFile* dex_file = &method.GetDexFile(); in DumpMethodCFG()
39 os << " # /* " << dex_file->PrettyMethod(method.GetIndex(), true) << " */\n"; in DumpMethodCFG()
41 CodeItemDataAccessor accessor(method.GetInstructionsAndData()); in DumpMethodCFG()
/art/test/031-class-attributes/src/
DClassAttrs.java227 Method method; in getSignatureAttribute() local
233 method = c.getDeclaredMethod("getSignatureAttribute"); in getSignatureAttribute()
234 method.setAccessible(true); in getSignatureAttribute()
241 return (String) method.invoke(obj); in getSignatureAttribute()
/art/dex2oat/linker/
Dimage_writer.cc747 ArtMethod* method = arr->GetElementPtrSize<ArtMethod*>(i, target_ptr_size_); in AddMethodPointerArray() local
748 if (method != nullptr && !method->IsRuntimeMethod()) { in AddMethodPointerArray()
749 ObjPtr<mirror::Class> klass = method->GetDeclaringClass(); in AddMethodPointerArray()
1297 ArtMethod* method = pair.object; in PreloadDexCache() local
1298 if (method != nullptr && i > stored_index) { in PreloadDexCache()
1309 if (method == nullptr || i < stored_index) { in PreloadDexCache()
1313 method = class_linker->FindResolvedMethod(last_class, dex_cache, class_loader, i); in PreloadDexCache()
1314 DCHECK(method == nullptr || dex_cache->GetResolvedMethod(i, target_ptr_size_) == method); in PreloadDexCache()
1747 void ImageWriter::AssignMethodOffset(ArtMethod* method, in AssignMethodOffset() argument
1750 DCHECK(!IsInBootImage(method)); in AssignMethodOffset()
[all …]
/art/test/303-verification-stress/
Dinfo.txt4 verifier on such method.
/art/test/088-monitor-verification/smali/
DTooDeep.smali5 .method public static run(Ljava/lang/Object;)V
82 .end method
/art/runtime/native/
Djava_lang_reflect_Constructor.cc42 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod) in Constructor_getExceptionTypes() local
45 annotations::GetExceptionTypesForMethod(method); in Constructor_getExceptionTypes()
/art/test/467-regalloc-pair/smali/
DTestCase.smali19 .method public static testCase([BLMain;)V
59 .end method
/art/libdexfile/dex/
Dcode_item_accessors.h46 ALWAYS_INLINE explicit CodeItemInstructionAccessor(ArtMethod* method);
158 ALWAYS_INLINE explicit CodeItemDebugInfoAccessor(ArtMethod* method);
/art/imgdiag/
Dimgdiag.cc671 void operator()(ArtMethod& method) const { in operator ()()
672 dirty_func_(&method, begin_image_ptr_, dirty_pages_); in operator ()()
685 void operator() (const ArtMethod* method, const T* member_address, const std::string& name) { in operator ()()
687 DCHECK(reinterpret_cast<uintptr_t>(method) <= reinterpret_cast<uintptr_t>(member_address)); in operator ()()
689 reinterpret_cast<uintptr_t>(method) + sizeof(ArtMethod)); in operator ()()
691 reinterpret_cast<uintptr_t>(member_address) - reinterpret_cast<uintptr_t>(method); in operator ()()
734 void VisitEntry(ArtMethod* method ATTRIBUTE_UNUSED) in VisitEntry()
738 void AddCleanEntry(ArtMethod* method ATTRIBUTE_UNUSED) { in AddCleanEntry()
741 void AddFalseDirtyEntry(ArtMethod* method) in AddFalseDirtyEntry() argument
743 RegionCommon<ArtMethod>::AddFalseDirtyEntry(method); in AddFalseDirtyEntry()
[all …]

1...<<313233343536373839