Home
last modified time | relevance | path

Searched defs:method (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/art/test/910-methods/
Dmethods.cc34 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodName()
77 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodDeclaringClass()
90 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodModifiers()
103 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMaxLocals()
116 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getArgumentsSize()
129 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodLocationStart()
143 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodLocationEnd()
157 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_isMethodNative()
170 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_isMethodObsolete()
183 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_isMethodSynthetic()
/art/test/993-breakpoints/
Dbreakpoints.cc44 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_constructNative() local
57 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNativeObject() local
74 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNativeBool() local
91 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNativeLong() local
108 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNative() local
/art/runtime/
Dinstrumentation.cc67 ArtMethod* method, in MethodExited()
81 ArtMethod* method, in FieldWritten()
143 ArtMethod* method = methods.front(); in ProcessMethodUnwindCallbacks() local
192 static bool IsProxyInit(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in IsProxyInit()
211 static bool CodeSupportsEntryExitHooks(const void* entry_point, ArtMethod* method) in CodeSupportsEntryExitHooks()
252 static void UpdateEntryPoints(ArtMethod* method, const void* quick_code) in UpdateEntryPoints()
277 bool Instrumentation::NeedsDexPcEvents(ArtMethod* method, Thread* thread) { in NeedsDexPcEvents()
281 bool Instrumentation::InterpretOnly(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in InterpretOnly()
312 static bool CanUseNterp(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in CanUseNterp()
318 static const void* GetOptimizedCodeFor(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in GetOptimizedCodeFor()
[all …]
Dcha.cc35 void ClassHierarchyAnalysis::AddDependency(ArtMethod* method, in AddDependency()
46 ArtMethod* method) { in GetDependents()
54 void ClassHierarchyAnalysis::RemoveAllDependenciesFor(ArtMethod* method) { in RemoveAllDependenciesFor()
123 ArtMethod* method = in ResetSingleImplementationInHierarchy() local
170 ArtMethod* method = interface->GetVirtualMethod(j, pointer_size); in ResetSingleImplementationInHierarchy() local
195 ArtMethod* method = GetMethod(); in VisitFrame() local
509 ArtMethod* method, in InitSingleImplementationFlag()
567 ArtMethod* method = klass->GetVTableEntry(i, image_pointer_size); in UpdateAfterLoadingOf() local
591 ArtMethod* method = klass->GetVTableEntry(i, image_pointer_size); in UpdateAfterLoadingOf() local
657 ArtMethod* method = dependent.first;; in InvalidateSingleImplementationMethods() local
Dreflection_test.cc88 void ReflectionTestMakeInterpreted(ArtMethod** method, in ReflectionTestMakeInterpreted()
138 ArtMethod* method; in InvokeNopMethod() local
147 ArtMethod* method; in InvokeIdentityByteMethod() local
173 ArtMethod* method; in InvokeIdentityIntMethod() local
198 ArtMethod* method; in InvokeIdentityDoubleMethod() local
223 ArtMethod* method; in InvokeSumIntIntMethod() local
252 ArtMethod* method; in InvokeSumIntIntIntMethod() local
291 ArtMethod* method; in InvokeSumIntIntIntIntMethod() local
335 ArtMethod* method; in InvokeSumIntIntIntIntIntMethod() local
384 ArtMethod* method; in InvokeSumDoubleDoubleMethod() local
[all …]
Dnterp_helpers.cc142 static uint16_t GetNumberOfOutRegs(ArtMethod* method, InstructionSet isa) in GetNumberOfOutRegs()
152 static size_t NterpGetFrameSizeWithoutPadding(ArtMethod* method, InstructionSet isa) in NterpGetFrameSizeWithoutPadding()
173 static inline size_t NterpGetFrameSize(ArtMethod* method, InstructionSet isa) in NterpGetFrameSize()
226 bool CanMethodUseNterp(ArtMethod* method, InstructionSet isa) { in CanMethodUseNterp()
Doat_quick_method_header.cc33 ArtMethod* method = *frame; in ToDexPc() local
58 uintptr_t OatQuickMethodHeader::ToNativeQuickPc(ArtMethod* method, in ToNativeQuickPc()
82 ArtMethod* method, in ToNativeQuickPcForCatchHandlers()
Dinstrumentation.h429 void MethodEnterEvent(Thread* thread, ArtMethod* method) const in MethodEnterEvent()
439 ArtMethod* method, in MethodExitEvent()
457 ArtMethod* method, in DexPcMovedEvent()
466 void Branch(Thread* thread, ArtMethod* method, uint32_t dex_pc, int32_t offset) const in Branch()
476 ArtMethod* method, in FieldReadEvent()
488 ArtMethod* method, in FieldWriteEvent()
/art/test/661-oat-writer-layout/src/
DMain.java21 Method method; field in Main.OatMethodAndOffset
24 public OatMethodAndOffset(Method method, long codeOffset) { in OatMethodAndOffset()
79 private static native long getOatMethodQuickCode(Method method); in getOatMethodQuickCode()
/art/test/990-field-trace/src/art/
DTest990.java41 private Executable method; field in Test990.FieldWrite
47 public FieldWrite(Executable method, Object target, Field f, Object v) { in FieldWrite()
65 private Executable method; field in Test990.FieldRead
69 public FieldRead(Executable method, Object target, Field f) { in FieldRead()
/art/test/ti-agent/
Dbreakpoint_helper.cc40 jmethodID method, in breakpointCB()
65 jmethodID method = env->FromReflectedMethod(target); in Java_art_Breakpoint_getLineNumberTableNative() local
112 jmethodID method = env->FromReflectedMethod(target); in Java_art_Breakpoint_getStartLocation() local
126 jmethodID method = env->FromReflectedMethod(target); in Java_art_Breakpoint_clearBreakpoint() local
137 jmethodID method = env->FromReflectedMethod(target); in Java_art_Breakpoint_setBreakpoint() local
148 jobject method, in Java_art_Breakpoint_startBreakpointWatch()
/art/runtime/mirror/
Dmethod.cc29 ObjPtr<Method> Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod()
44 ObjPtr<Constructor> Constructor::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod()
/art/runtime/native/
Djava_lang_reflect_Executable.cc44 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getDeclaredAnnotationsNative() local
61 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getAnnotationNative() local
72 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getSignatureAnnotation() local
82 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getParameterAnnotationsNative() local
239 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_isAnnotationPresentNative() local
303 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getMethodNameInternal() local
310 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getMethodReturnTypeInternal() local
323 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getParameterTypesInternal() local
358 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); in Executable_getParameterCountInternal() local
/art/test/986-native-method-bind/src/art/
DTest986.java37 private static void setNativeTransform(Method method, String dest) { in setNativeTransform()
41 private static void removeNativeTransform(Method method) { in removeNativeTransform()
48 public static String doNativeMethodBind(Method method, String nativeSym) { in doNativeMethodBind()
/art/runtime/jit/
Djit_code_cache.cc156 void AddMethod(ArtMethod* method) { in AddMethod()
170 [&alloc](ArtMethod* method) { return !alloc.ContainsUnsafe(method); }); in RemoveMethodsIn()
177 bool RemoveMethod(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in RemoveMethod()
294 bool JitCodeCache::ContainsMethod(ArtMethod* method) { in ContainsMethod()
318 const void* JitCodeCache::GetJniStubCode(ArtMethod* method) { in GetJniStubCode()
333 const void* JitCodeCache::GetSavedEntryPointOfPreCompiledMethod(ArtMethod* method) { in GetSavedEntryPointOfPreCompiledMethod()
503 VisitAllMethods([&](const void* addr, ArtMethod* method) { in FreeAllMethodHeaders()
632 static void ClearMethodCounter(ArtMethod* method, bool was_warm) in ClearMethodCounter()
657 ArtMethod* method, in Commit()
809 bool JitCodeCache::RemoveMethod(ArtMethod* method, bool release_memory) { in RemoveMethod()
[all …]
Dprofiling_info.cc28 ProfilingInfo::ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries) in ProfilingInfo()
43 ProfilingInfo* ProfilingInfo::Create(Thread* self, ArtMethod* method) { in Create()
113 ScopedProfilingInfoUse::ScopedProfilingInfoUse(jit::Jit* jit, ArtMethod* method, Thread* self) in ScopedProfilingInfoUse()
/art/test/044-proxy/src/
DFloatSelect.java25 public float method(float a, float b); in method() method
29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke()
/art/test/2239-varhandle-perf/util-src/
Dgenerate_java.py41 def __init__(self, code, static, vartype, flavour, klass, method, memloc, argument
93 def BenchVHField(code, static, vartype, flavour, method): argument
97 def BenchVHArray(code, vartype, flavour, method): argument
101 def BenchVHByteArrayView(code, byteorder, vartype, flavour, method): argument
105 def BenchReflect(code, static, vartype, method): argument
109 def BenchUnsafe(code, static, vartype, method): argument
/art/runtime/arch/arm/
Dquick_entrypoints_cc_arm.cc29 static void quick_invoke_reg_setup(ArtMethod* method, uint32_t* args, uint32_t args_size, in quick_invoke_reg_setup()
101 extern "C" void art_quick_invoke_stub(ArtMethod* method, uint32_t* args, uint32_t args_size, in art_quick_invoke_stub()
109 extern "C" void art_quick_invoke_static_stub(ArtMethod* method, uint32_t* args, in art_quick_invoke_static_stub()
/art/test/124-missing-classes/src/
DMain.java42 MissingClass method() { in method() method in Main.ClassWithMissingMethodReturnType
57 void method(MissingClass arg) {} in method() method in Main.ClassWithMissingMethodParameterType
/art/openjdkjvmti/
Dti_method.cc132 jmethodID method, in GetBytecodes()
166 jmethodID method, in GetArgumentsSize()
201 jmethodID method, in GetLocalVariableTable()
288 jmethodID method, in GetMaxLocals()
318 jmethodID method, in GetMethodName()
384 jmethodID method, in GetMethodDeclaringClass()
401 jmethodID method, in GetMethodLocation()
434 jmethodID method, in GetMethodModifiers()
458 jmethodID method, in GetLineNumberTable()
511 jmethodID method, in IsMethodT()
[all …]
/art/test/1914-get-local-instance/
Dlocal_instance.cc40 jmethodID method = env->GetMethodID(runnable.get(), "run", "()V"); in Java_art_Test1914_00024TargetClass_NativeInstanceMethod() local
55 jmethodID method = env->GetMethodID(runnable.get(), "run", "()V"); in Java_art_Test1914_NativeStaticMethod() local
/art/test/566-polymorphic-inlining/
Dpolymorphic_inline.cc30 static bool do_checks(ArtMethod* method, ScopedObjectAccess& soa) in do_checks()
72 ArtMethod* method = soa.Decode<mirror::Class>(cls)->FindDeclaredDirectMethodByName( in Java_Main_ensureJittedAndPolymorphicInline566() local
/art/test/1928-exception-event-exception/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP()
34 public BP(Executable method, long location) { in BP()
83 public void setBreakpoint(Executable method, long location) { in setBreakpoint()
94 public void clearBreakpoint(Executable method, long location) { in clearBreakpoint()
/art/test/1939-proxy-frames/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP()
34 public BP(Executable method, long location) { in BP()
83 public void setBreakpoint(Executable method, long location) { in setBreakpoint()
94 public void clearBreakpoint(Executable method, long location) { in clearBreakpoint()

12345678910>>...14