Home
last modified time | relevance | path

Searched refs:method (Results 326 – 350 of 961) sorted by relevance

1...<<11121314151617181920>>...39

/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc175 ScopedMethodInfo(jvmtiEnv* jvmti_env, JNIEnv* env, jmethodID method) in ScopedMethodInfo() argument
178 method_(method), in ScopedMethodInfo()
249 friend std::ostream& operator<<(std::ostream& os, ScopedMethodInfo const& method);
252 std::ostream& operator<<(std::ostream& os, const ScopedMethodInfo* method) { in operator <<() argument
253 return os << *method; in operator <<()
256 std::ostream& operator<<(std::ostream& os, ScopedMethodInfo const& method) { in operator <<() argument
257 return os << method.GetDeclaringClassInfo().GetName() << "->" << method.GetName() in operator <<()
258 << method.GetSignature() << " (source: " in operator <<()
259 << method.GetDeclaringClassInfo().GetSourceFileName() << ":" << method.GetFirstLine() in operator <<()
266 jmethodID method, in BreakpointCB() argument
[all …]
/art/runtime/interpreter/mterp/
Dnterp.cc49 bool CanMethodUseNterp(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in CanMethodUseNterp() argument
50 return !method->IsNative() && in CanMethodUseNterp()
51 method->SkipAccessChecks() && in CanMethodUseNterp()
52 method->IsInvokable() && in CanMethodUseNterp()
53 !method->MustCountLocks() && in CanMethodUseNterp()
54 method->GetDexFile()->IsStandardDexFile() && in CanMethodUseNterp()
57 !method->IsProxyMethod() && in CanMethodUseNterp()
58 NterpGetFrameSize(method) < kNterpMaxFrame; in CanMethodUseNterp()
84 inline void UpdateHotness(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in UpdateHotness() argument
90 uint32_t counter = method->GetCounter(); in UpdateHotness()
[all …]
/art/test/800-smali/smali/
DConstClassAliasing.smali5 .method public static run()V
12 .end method
Db_18800943_2.smali5 .method public constructor <init>()V
9 .end method
Db_28187158.smali7 .method public static run(Ljava/lang/Integer;)V
11 .end method
Db_134061983_2.smali5 .method public constructor <init>()V
9 .end method
11 .method public static run(I)V
61 .end method
DBadCaseInOpRegRegReg.smali5 .method public static getInt()I
13 .end method
Db_17790197.smali5 .method public static getInt()I
17 .end method
DFloatBadArgReg.smali5 .method public static getInt(I)I
16 .end method
Db_25494456.smali8 .method public static run()Lwont/be/Resolvable;
14 .end method
/art/test/431-type-propagation/smali/
DTypePropagation.smali19 .method public static method([I)V
38 .end method
40 .method public static emptyMethod()V
43 .end method
/art/test/475-regression-inliner-ids/smali/
DTestCase.smali19 .method private static flagToString(I)Ljava/lang/String;
22 # The bug is triggered when inlining a method with few Load/StoreLocals but
69 .end method
71 .method public static testCase(I)Ljava/lang/String;
76 .end method
/art/test/647-sinking-catch/src/
DMain.java22 public static void testMethod(String method) throws Exception { in testMethod() argument
24 Method m = c.getMethod(method); in testMethod()
/art/test/682-double-catch-phi/smali/
DDoubleCatchPhi.smali21 .method public constructor <init>()V
25 .end method
27 .method public strangeMethod(F)V
47 .end method
/art/test/954-invoke-polymorphic-verifier/smali/
DMethodHandleNotInvoke.smali21 .method public constructor <init>()V
31 .end method
33 .method public static getMethodHandle()Ljava/lang/invoke/MethodHandle;
37 .end method
DVarHandleUnknownAccessor.smali21 .method public constructor <init>()V
31 .end method
33 .method public static getVarHandle()Ljava/lang/invoke/VarHandle;
37 .end method
/art/test/509-pre-header/smali/
DPreHeader.smali19 # Label names in this method are taken from the original apk
23 .method public static method()V
39 .end method
/art/test/412-new-array/smali/
Dfilled_new_array_verify_error.smali5 .method public static newRef(Ljava/lang/Object;Ljava/lang/Object;)[Ljava/lang/Object;
10 .end method
/art/test/667-jit-jni-stub/
Djit_jni_stub_test.cc44 jmethodID method = env->GetStaticMethodID(klass, name.c_str(), "()V"); in Java_Main_callThrough() local
45 CHECK(method != nullptr) << soa.Decode<mirror::Class>(klass)->PrettyDescriptor() << "." << name; in Java_Main_callThrough()
46 env->CallStaticVoidMethod(klass, method); in Java_Main_callThrough()
/art/runtime/
Dcommon_throws.cc99 void ThrowAbstractMethodError(ArtMethod* method) { in ThrowAbstractMethodError() argument
102 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowAbstractMethodError()
261 ArtMethod* method, ArtMethod* referrer) { in ThrowIncompatibleClassChangeError() argument
263 msg << "The method '" << ArtMethod::PrettyMethod(method) << "' was expected to be of type " in ThrowIncompatibleClassChangeError()
270 void ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(ArtMethod* method, in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper() argument
281 << ArtMethod::PrettyMethod(method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper()
322 void ThrowIncompatibleClassChangeErrorForMethodConflict(ArtMethod* method) { in ThrowIncompatibleClassChangeErrorForMethodConflict() argument
323 DCHECK(method != nullptr); in ThrowIncompatibleClassChangeErrorForMethodConflict()
327 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowIncompatibleClassChangeErrorForMethodConflict()
446 void ThrowNullPointerExceptionForMethodAccess(ArtMethod* method, InvokeType type) { in ThrowNullPointerExceptionForMethodAccess() argument
[all …]
/art/test/1929-exception-catch-exception/src/art/
DTest1929.java53 if (Objects.equals(e.method.getDeclaringClass().getPackage(), Test1929.class.getPackage())) { in PrintStack()
54 System.out.println("\t\t" + e.method + " @ line = " + in PrintStack()
55 Breakpoint.locationToLine(e.method, e.current_location)); in PrintStack()
61 Thread thr, Executable method, long location, Throwable exception) { in ExceptionCatchEvent() argument
62 System.out.println(thr.getName() + ": " + method + " @ line = " + in ExceptionCatchEvent()
63 Breakpoint.locationToLine(method, location) + " caught " + in ExceptionCatchEvent()
70 if (HANDLER != null && TEST_METHODS.contains(method)) { in ExceptionCatchEvent()
71 HANDLER.exceptionOccurred(method, location, exception); in ExceptionCatchEvent()
/art/runtime/mirror/
Dclass-inl.h373 uint32_t i, ArtMethod* method, PointerSize pointer_size) { in SetEmbeddedVTableEntryUnchecked() argument
375 EmbeddedVTableEntryOffset(i, pointer_size), method, pointer_size); in SetEmbeddedVTableEntryUnchecked()
378 inline void Class::SetEmbeddedVTableEntry(uint32_t i, ArtMethod* method, PointerSize pointer_size) { in SetEmbeddedVTableEntry() argument
380 CHECK_EQ(method, vtable->GetElementPtrSize<ArtMethod*>(i, pointer_size)); in SetEmbeddedVTableEntry()
381 SetEmbeddedVTableEntryUnchecked(i, method, pointer_size); in SetEmbeddedVTableEntry()
491 ArtMethod* method, in ResolvedMethodAccessTest() argument
513 method, in ResolvedMethodAccessTest()
519 if (LIKELY(this->CanAccessMember(access_to, method->GetAccessFlags()))) { in ResolvedMethodAccessTest()
523 ThrowIllegalAccessErrorMethod(this, method); in ResolvedMethodAccessTest()
543 ArtMethod* method, in CanAccessResolvedMethod() argument
[all …]
/art/compiler/jit/
Djit_compiler.cc168 Thread* self, JitMemoryRegion* region, ArtMethod* method, CompilationKind compilation_kind) { in CompileMethod() argument
170 << method->PrettyMethod() in CompileMethod()
173 DCHECK(!method->IsProxyMethod()); in CompileMethod()
174 DCHECK(method->GetDeclaringClass()->IsResolved()); in CompileMethod()
193 self, code_cache, region, method, compilation_kind, jit_logger_.get()); in CompileMethod()
196 << method->PrettyMethod() in CompileMethod()
/art/test/088-monitor-verification/smali/
DUnbalancedStraight.smali5 .method public static run(Ljava/lang/Object;Ljava/lang/Object;)V
18 .end method
/art/dex2oat/driver/
Dcompiler_driver_test.cc53 void EnsureCompiled(jobject class_loader, const char* class_name, const char* method, in EnsureCompiled() argument
64 mid_ = env_->GetMethodID(class_, method, signature); in EnsureCompiled()
66 mid_ = env_->GetStaticMethodID(class_, method, signature); in EnsureCompiled()
68 CHECK(mid_ != nullptr) << "Method not found: " << class_name << "." << method << signature; in EnsureCompiled()
80 void MakeExecutable(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { in MakeExecutable() argument
81 CHECK(method != nullptr); in MakeExecutable()
84 if (!method->IsAbstract()) { in MakeExecutable()
85 const DexFile& dex_file = *method->GetDexFile(); in MakeExecutable()
88 method->GetDexMethodIndex())); in MakeExecutable()
90 CommonCompilerTest::MakeExecutable(method, compiled_method); in MakeExecutable()
[all …]

1...<<11121314151617181920>>...39