/art/test/976-conflict-no-methods/smali/ |
D | Main.smali | 21 .method public constructor <init>()V 25 .end method 27 .method public static main([Ljava/lang/String;)V 33 .end method 35 .method public abstractMethod0()V 38 .end method 40 .method public abstractMethod1()V 43 .end method 45 .method public abstractMethod2()V 48 .end method [all …]
|
D | Iface.smali | 88 .method public abstract abstractMethod0()V 89 .end method 91 .method public abstract abstractMethod1()V 92 .end method 94 .method public abstract abstractMethod2()V 95 .end method 97 .method public abstract abstractMethod3()V 98 .end method 100 .method public abstract abstractMethod4()V 101 .end method [all …]
|
/art/test/972-default-imt-collision/smali/ |
D | Iface2.smali | 87 .method public abstract notImplementedMethod0()V 88 .end method 90 .method public abstract notImplementedMethod1()V 91 .end method 93 .method public abstract notImplementedMethod2()V 94 .end method 96 .method public abstract notImplementedMethod3()V 97 .end method 99 .method public abstract notImplementedMethod4()V 100 .end method [all …]
|
/art/test/1961-obsolete-jit-multithread/ |
D | expected-stdout.txt | 1 Thread 0: Hello - Start method sayHi 3 Thread 0: Hello - End method sayHi 4 Thread 0: Hello - Start method sayHi 6 Thread 0: Hello - End method sayHi 7 Thread 0: goodbye - Start method sayHi 9 Thread 0: goodbye - End method sayHi 11 Thread 1: Hello - Start method sayHi 13 Thread 1: Hello - End method sayHi 14 Thread 1: Hello - Start method sayHi 16 Thread 1: Hello - End method sayHi [all …]
|
/art/test/1960-obsolete-jit-multithread-native/ |
D | expected-stdout.txt | 1 Thread 0: Hello - Start method sayHi 3 Thread 0: Hello - End method sayHi 4 Thread 0: Hello - Start method sayHi 6 Thread 0: Hello - End method sayHi 7 Thread 0: goodbye - Start method sayHi 9 Thread 0: goodbye - End method sayHi 11 Thread 1: Hello - Start method sayHi 13 Thread 1: Hello - End method sayHi 14 Thread 1: Hello - Start method sayHi 16 Thread 1: Hello - End method sayHi [all …]
|
/art/odrefresh/schema/ |
D | current.txt | 6 method public com.android.art.ModuleInfo getArtModuleInfo(); 7 method public com.android.art.Classpath getBootClasspath(); 8 method public boolean getCompilationOsMode(); 9 method public com.android.art.Classpath getDex2oatBootClasspath(); 10 method public com.android.art.ModuleInfoList getModuleInfoList(); 11 method public com.android.art.KeyValuePairList getSystemProperties(); 12 method public com.android.art.SystemServerComponents getSystemServerComponents(); 13 method public void setArtModuleInfo(com.android.art.ModuleInfo); 14 method public void setBootClasspath(com.android.art.Classpath); 15 method public void setCompilationOsMode(boolean); [all …]
|
/art/test/VerifierDeps/ |
D | Main.smali | 18 .method public static ArgumentType_ResolvedClass(Ljava/lang/Thread;)V 21 .end method 23 .method public static ArgumentType_ResolvedReferenceArray([Ljava/lang/Thread;)V 26 .end method 28 .method public static ArgumentType_ResolvedPrimitiveArray([B)V 31 .end method 33 .method public static ArgumentType_UnresolvedClass(LUnresolvedClass;)V 36 .end method 38 .method public static ArgumentType_UnresolvedSuper(LMySetWithUnresolvedSuper;)V 41 .end method [all …]
|
/art/tools/ahat/etc/ |
D | ahat_api.txt | 5 method public static void main(String[]); 14 method public void computeDominators(Node); 15 …method public com.android.ahat.dominators.Dominators progress(com.android.ahat.progress.Progress, … 19 method public Object getDominatorsComputationState(Node); 20 method public Iterable<? extends Node> getReferencesForDominators(Node); 21 method public void setDominator(Node, Node); 22 method public void setDominatorsComputationState(Node, Object); 26 …method @Deprecated public static void computeDominators(com.android.ahat.dominators.DominatorsComp… 27 …method @Deprecated public static void computeDominators(com.android.ahat.dominators.DominatorsComp… 31 method @Deprecated public Object getDominatorsComputationState(); [all …]
|
/art/test/985-re-obsolete/ |
D | expected-stdout.txt | 1 Pre Start private method call 3 Post Start private method call 5 Pre Finish private method call 7 Post Finish private method call 8 Pre Start private method call 10 Post Start private method call 12 Pre Finish private method call 14 Post Finish private method call 15 Pre Start private method call - Transformed 17 Post Start private method call - Transformed [all …]
|
/art/runtime/ |
D | instrumentation.cc | 67 ArtMethod* method, in MethodExited() argument 70 DCHECK_EQ(method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetReturnTypePrimitive(), in MethodExited() 75 MethodExited(thread, method, frame, v); in MethodExited() 81 ArtMethod* method, in FieldWritten() argument 88 FieldWritten(thread, this_object, method, dex_pc, field, v); in FieldWritten() 143 ArtMethod* method = methods.front(); in ProcessMethodUnwindCallbacks() local 146 LOG(INFO) << "Popping for unwind " << method->PrettyMethod(); in ProcessMethodUnwindCallbacks() 149 if (method->IsRuntimeMethod()) { in ProcessMethodUnwindCallbacks() 156 MethodUnwindEvent(self, method, dex_pc); in ProcessMethodUnwindCallbacks() 178 for (ArtMethod& method : klass->GetMethods(kRuntimePointerSize)) { in InstallStubsForClass() [all …]
|
D | reflection_test.cc | 88 void ReflectionTestMakeInterpreted(ArtMethod** method, in ReflectionTestMakeInterpreted() argument 112 *method = c->FindClassMethod(method_name, method_signature, kRuntimePointerSize); in ReflectionTestMakeInterpreted() 113 CHECK(*method != nullptr); in ReflectionTestMakeInterpreted() 114 CHECK_EQ(is_static, (*method)->IsStatic()); in ReflectionTestMakeInterpreted() 138 ArtMethod* method; in InvokeNopMethod() local 140 ReflectionTestMakeInterpreted(&method, &receiver, is_static, "nop", "()V"); in InvokeNopMethod() 142 InvokeWithJValues(soa, receiver_ref.get(), jni::EncodeArtMethod(method), nullptr); in InvokeNopMethod() 147 ArtMethod* method; in InvokeIdentityByteMethod() local 149 ReflectionTestMakeInterpreted(&method, &receiver, is_static, "identity", "(B)B"); in InvokeIdentityByteMethod() 154 JValue result = InvokeWithJValues(soa, receiver_ref.get(), jni::EncodeArtMethod(method), args); in InvokeIdentityByteMethod() [all …]
|
/art/test/978-virtual-interface/smali/ |
D | Iface.smali | 19 # // first Subtype virtual method (the other 10 are the java/lang/Object; 41 .method public fakeMethod_A()V 44 .end method 47 .method public fakeMethod_B()V 50 .end method 53 .method public fakeMethod_C()V 56 .end method 59 .method public fakeMethod_D()V 62 .end method 65 .method public fakeMethod_E()V [all …]
|
/art/libartservice/service/api/ |
D | system-server-current.txt | 7 …method public void addDexoptDoneCallback(boolean, @NonNull java.util.concurrent.Executor, @NonNull… 8 method public void cancelBackgroundDexoptJob(); 9 method public void clearAdjustCompilerFilterCallback(); 10 …method @NonNull public void clearAppProfiles(@NonNull com.android.server.pm.PackageManagerLocal.Fi… 11 method public void clearBatchDexoptStartCallback(); 12 method public void clearScheduleBackgroundDexoptJobCallback(); 13 …method @NonNull public com.android.server.art.model.DeleteResult deleteDexoptArtifacts(@NonNull co… 14 …method @NonNull public com.android.server.art.model.DexoptResult dexoptPackage(@NonNull com.androi… 15 …method @NonNull public com.android.server.art.model.DexoptResult dexoptPackage(@NonNull com.androi… 16 …method public void dump(@NonNull java.io.PrintWriter, @NonNull com.android.server.pm.PackageManage… [all …]
|
/art/test/919-obsolete-fields/ |
D | expected-stdout.txt | 1 Pre Start private method call 3 Post Start private method call 5 Pre Finish private method call 7 Post Finish private method call 8 Pre Start private method call 10 Post Start private method call 12 Pre Finish private method call 14 Post Finish private method call 15 pre Start private method call - Transformed 17 post Start private method call - Transformed [all …]
|
/art/test/916-obsolete-jit/ |
D | expected-stdout.txt | 1 Pre Start private method call 3 Post Start private method call 5 Pre Finish private method call 7 Post Finish private method call 8 Pre Start private method call 10 Post Start private method call 12 Pre Finish private method call 14 Post Finish private method call 15 pre Start private method call - Transformed 17 post Start private method call - Transformed [all …]
|
/art/test/915-obsolete-2/ |
D | expected-stdout.txt | 1 Pre Start private method call 3 Post Start private method call 5 Pre Finish private method call 7 Post Finish private method call 8 Pre Start private method call 10 Post Start private method call 12 Pre Finish private method call 14 Post Finish private method call 15 Pre Start private method call - Transformed 17 Post Start private method call - Transformed [all …]
|
/art/runtime/mirror/ |
D | method.cc | 29 ObjPtr<Method> Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod() argument 30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 33 ret->InitializeFromArtMethod<kPointerSize>(method); in CreateFromArtMethod() 39 Thread* self, ArtMethod* method); 41 Thread* self, ArtMethod* method); 44 ObjPtr<Constructor> Constructor::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod() argument 45 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 49 ret->InitializeFromArtMethod<kPointerSize>(method); in CreateFromArtMethod() 55 Thread* self, ArtMethod* method); 57 Thread* self, ArtMethod* method);
|
D | executable.cc | 26 void Executable::InitializeFromArtMethod(ArtMethod* method) { in InitializeFromArtMethod() argument 29 auto* interface_method = method->GetInterfaceMethodIfProxy(kPointerSize); in InitializeFromArtMethod() 30 SetArtMethod</*kTransactionActive=*/ false, /*kCheckTransaction=*/ false>(method); in InitializeFromArtMethod() 32 DeclaringClassOffset(), method->GetDeclaringClass()); in InitializeFromArtMethod() 36 AccessFlagsOffset(), method->GetAccessFlags()); in InitializeFromArtMethod() 38 DexMethodIndexOffset(), method->GetDexMethodIndex()); in InitializeFromArtMethod() 41 template void Executable::InitializeFromArtMethod<PointerSize::k32>(ArtMethod* method); 42 template void Executable::InitializeFromArtMethod<PointerSize::k64>(ArtMethod* method);
|
/art/test/993-breakpoints/ |
D | breakpoints.cc | 44 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_constructNative() local 48 return env->NewObject(clazz, method); in Java_art_Test993_constructNative() 57 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNativeObject() local 62 env->CallStaticObjectMethod(clazz, method); in Java_art_Test993_invokeNativeObject() 64 env->CallObjectMethod(thizz, method); in Java_art_Test993_invokeNativeObject() 74 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNativeBool() local 79 env->CallStaticBooleanMethod(clazz, method); in Java_art_Test993_invokeNativeBool() 81 env->CallBooleanMethod(thizz, method); in Java_art_Test993_invokeNativeBool() 91 jmethodID method = env->FromReflectedMethod(target); in Java_art_Test993_invokeNativeLong() local 96 env->CallStaticLongMethod(clazz, method); in Java_art_Test993_invokeNativeLong() [all …]
|
/art/test/412-new-array/smali/ |
D | fill_array_data.smali | 5 .method public static emptyIntArray([I)V 15 .end method 17 .method public static intArray([I)V 28 .end method 30 .method public static intArrayFillInstructionAfterData([I)V 43 .end method 45 .method public static shortArray([S)V 56 .end method 58 .method public static charArray([C)V 69 .end method [all …]
|
/art/test/800-smali/smali/ |
D | b_27799205_helper.smali | 7 .method public static run1()V 12 .end method 14 .method public static run2()V 19 .end method 21 .method public static run3()V 26 .end method 28 .method public static run4()V 33 .end method 35 .method public static run5()V 40 .end method [all …]
|
/art/test/432-optimizing-cmp/smali/ |
D | cmp.smali | 5 .method public static $opt$CmpLong(JJ)I 9 .end method 11 .method public static $opt$CmpGtFloat(FF)I 15 .end method 17 .method public static $opt$CmpLtFloat(FF)I 21 .end method 23 .method public static $opt$CmpGtDouble(DD)I 27 .end method 29 .method public static $opt$CmpLtDouble(DD)I 33 .end method
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 71 explicit JniStubKey(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) in REQUIRES_SHARED() 72 : shorty_(method->GetShorty()), in REQUIRES_SHARED() 73 is_static_(method->IsStatic()), in REQUIRES_SHARED() 74 is_fast_native_(method->IsFastNative()), in REQUIRES_SHARED() 75 is_critical_native_(method->IsCriticalNative()), in REQUIRES_SHARED() 76 is_synchronized_(method->IsSynchronized()) { in REQUIRES_SHARED() 99 void UpdateShorty(ArtMethod* method) const REQUIRES_SHARED(Locks::mutator_lock_) { in UpdateShorty() 100 const char* shorty = method->GetShorty(); in UpdateShorty() 156 void AddMethod(ArtMethod* method) { in AddMethod() argument 157 if (!ContainsElement(methods_, method)) { in AddMethod() [all …]
|
/art/test/121-modifiers/smali/ |
D | NonInf.smali | 41 .method public constructor <init>()V 85 .end method 87 .method private privateMethod()I 95 .end method 97 .method public static staticMethod()I 105 .end method 109 .method public abstract abstractMethod()I 110 .end method 112 .method public final finalMethod()I 120 .end method [all …]
|
/art/test/660-store-8-16/smali/ |
D | TestCase.smali | 19 .method public static setByteArray([B)V 25 .end method 27 .method public static setByteStaticField()V 32 .end method 34 .method public static setByteInstanceField(LTestCase;)V 39 .end method 41 .method public constructor <init>()V 45 .end method 47 .method public static setShortArray([S)V 53 .end method [all …]
|