/art/test/179-nonvirtual-jni/ |
D | expected-stdout.txt | 2 Call lookup: Base, caller: Base, Obj: Base 4 Call lookup: Base, caller: Base, Obj: Ext 6 Call lookup: Base, caller: Ext, Obj: Ext 8 Call lookup: Ext, caller: Ext, Obj: Ext
|
/art/test/708-jit-cache-churn/src/ |
D | JitCacheChurnTest.java | 99 $noinline$Call(); in call() 101 return $noinline$Call(); in call() 104 protected abstract Integer $noinline$Call(); in $noinline$Call() 109 protected Integer $noinline$Call() { in $noinline$Call() 116 protected Integer $noinline$Call() { in $noinline$Call() 123 protected Integer $noinline$Call() { in $noinline$Call() 134 protected Integer $noinline$Call() { in $noinline$Call() 155 protected Integer $noinline$Call() { in $noinline$Call() 161 protected Integer $noinline$Call() { in $noinline$Call() 167 protected Integer $noinline$Call() { in $noinline$Call() [all …]
|
/art/test/800-smali/smali/ |
D | b_21869691B.smali | 21 # Call ourself with invoke-virtual. 28 # Call C with invoke-virtual.
|
D | b_20843113.smali | 12 # Call the super-constructor
|
/art/test/955-methodhandles-smali/smali/ |
D | Main.smali | 29 # Call Lookup.findVirtual(defc, name, type); 46 # Call Lookup.findStatic(defc, name, type); 59 # Call MethodType.methodType(rtype=String.class, ptype[0] = String.class) 63 # Call Main.getHandleForVirtual(String.class, "concat", methodType); 81 # Call MethodType.methodType(rtype=int.class, ptype[0] = Long.class) 86 # Call Main.getHandleForVirtual(Long.class, "compareTo", methodType); 106 # Call MethodType.methodType(rtype=String.class, ptype[0]=Object.class) 110 # Call Main.getHandleForStatic(String.class, "valueOf", methodType); 127 # Call MethodType.methodType(rtype=String.class, ptype[0]=Long.class) 131 # Call Main.getHandleForStatic(String.class, "valueOf", methodType); [all …]
|
/art/artd/ |
D | artd_test.cc | 346 ON_CALL(mock_fstat_, Call).WillByDefault(fstat); in SetUp() 613 EXPECT_CALL(mock_logger_, Call(_, _, _, _, _, HasSubstr("Failed to get the file size"))).Times(0); in TEST_F() 633 EXPECT_CALL(mock_logger_, Call(_, _, _, _, _, HasSubstr("Failed to get the file size"))).Times(0); in TEST_F() 648 EXPECT_CALL(mock_logger_, Call(_, _, _, _, _, HasSubstr("Failed to get the file size"))).Times(3); in TEST_F() 668 Call(_, _, _, _, _, ContainsRegex(R"re(Failed to get the file size.*b\.vdex)re"))) in TEST_F() 1159 EXPECT_CALL(mock_kill_, Call(-kPid, SIGKILL)); in TEST_F() 1192 EXPECT_CALL(mock_kill_, Call(-kPid, SIGKILL)).WillOnce([&](auto, auto) { in TEST_F() 1232 EXPECT_CALL(mock_kill_, Call).Times(0); in TEST_F() 1293 EXPECT_CALL(mock_fstat_, Call(_, _)).WillRepeatedly(fstat); // For profile. in TEST_F() 1294 EXPECT_CALL(mock_fstat_, Call(FdOf(dex_file_), _)) in TEST_F() [all …]
|
/art/test/162-method-resolution/jasmin/ |
D | Test5User.j | 26 ; Call an unresolved method bar() to force verification at runtime
|
/art/runtime/arch/arm/ |
D | jni_entrypoints_arm.S | 53 bl \cxx_name @ Call cxx_name(...). 77 bl \cxx_name @ Call cxx_name(...).
|
/art/runtime/ |
D | exec_utils_test.cc | 330 EXPECT_CALL(on_start, Call(AllOf(Gt(0), Ne(getpid())))); in TEST_P() 331 EXPECT_CALL(on_end, Call(AllOf(Gt(0), Ne(getpid())))); in TEST_P()
|
/art/compiler/utils/x86/ |
D | jni_macro_assembler_x86.h | 105 void Call(ManagedRegister base, Offset offset) override;
|
D | jni_macro_assembler_x86.cc | 423 void X86JNIMacroAssembler::Call(ManagedRegister mbase, Offset offset) { in Call() function in art::x86::X86JNIMacroAssembler
|
/art/compiler/utils/riscv64/ |
D | jni_macro_assembler_riscv64.h | 107 void Call(ManagedRegister base, Offset offset) override;
|
D | jni_macro_assembler_riscv64_test.cc | 733 TEST_F(JniMacroAssemblerRiscv64Test, Call) { in TEST_F() argument 736 __ Call(AsManaged(A0), Offset(32)); in TEST_F() local 740 __ Call(AsManaged(S2), Offset(2048)); in TEST_F() local
|
D | jni_macro_assembler_riscv64.cc | 445 void Riscv64JNIMacroAssembler::Call(ManagedRegister m_base, Offset offs) { in Call() function in art::riscv64::Riscv64JNIMacroAssembler 454 Call(Riscv64ManagedRegister::FromXRegister(TR), offset); in CallFromThread()
|
/art/compiler/utils/x86_64/ |
D | jni_macro_assembler_x86_64.h | 106 void Call(ManagedRegister base, Offset offset) override;
|
D | jni_macro_assembler_x86_64.cc | 495 void X86_64JNIMacroAssembler::Call(ManagedRegister mbase, Offset offset) { in Call() function in art::x86_64::X86_64JNIMacroAssembler
|
/art/compiler/utils/arm/ |
D | jni_macro_assembler_arm_vixl.h | 116 void Call(ManagedRegister base, Offset offset) override;
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 417 __ Call(main_jni_conv->HiddenArgumentRegister(), jni_entrypoint_offset); in ArtJniCompileMethodInternal() local 421 __ Call(method_register, jni_entrypoint_offset); in ArtJniCompileMethodInternal() local 760 __ Call(jni_conv->CurrentParamRegister(), Offset(jni_decode_reference_result)); in CallDecodeReferenceResult() local
|
/art/compiler/utils/arm64/ |
D | jni_macro_assembler_arm64.h | 118 void Call(ManagedRegister base, Offset offset) override;
|
/art/compiler/utils/ |
D | jni_macro_assembler.h | 195 virtual void Call(ManagedRegister base, Offset offset) = 0;
|
D | assembler_thumb_test.cc | 215 __ Call(method_register, FrameOffset(48)); in TEST_F() local
|
/art/test/dexdump/ |
D | invoke-custom.txt | 3580 003278: 1a08 2000 |00b6: const-string v8, "Call-sites invocations :" /… 3585 00328c: 1a09 0300 |00c0: const-string v9, " Call site instance #%02d w… 5602 Call site #0: // offset 29649 5608 Call site #1: // offset 29662 5614 Call site #2: // offset 29675 5618 Call site #3: // offset 29683 5625 Call site #4: // offset 29697 5631 Call site #5: // offset 29697 5637 Call site #6: // offset 29716 5643 Call site #7: // offset 29736 [all …]
|
D | all-dex-files.txt | 12397 003278: 1a08 2000 |00b6: const-string v8, "Call-sites invocations :" /… 12402 00328c: 1a09 0300 |00c0: const-string v9, " Call site instance #%02d w… 14419 Call site #0: // offset 29649 14425 Call site #1: // offset 29662 14431 Call site #2: // offset 29675 14435 Call site #3: // offset 29683 14442 Call site #4: // offset 29697 14448 Call site #5: // offset 29697 14454 Call site #6: // offset 29716 14460 Call site #7: // offset 29736 [all …]
|
/art/test/563-checker-fakestring/smali/ |
D | TestCase.smali | 33 # Call String.<init> on v1.
|
/art/build/boot/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 264 Lcom/android/okhttp/Call$ApplicationInterceptorChain;->connection()Lcom/android/okhttp/Connection; 265 Lcom/android/okhttp/Call$ApplicationInterceptorChain;->forWebSocket:Z 266 Lcom/android/okhttp/Call$ApplicationInterceptorChain;->index:I 267 Lcom/android/okhttp/Call$ApplicationInterceptorChain;->proceed(Lcom/android/okhttp/Request;)Lcom/an… 268 Lcom/android/okhttp/Call$ApplicationInterceptorChain;->request()Lcom/android/okhttp/Request; 269 Lcom/android/okhttp/Call$ApplicationInterceptorChain;->request:Lcom/android/okhttp/Request; 270 Lcom/android/okhttp/Call$AsyncCall;->cancel()V 271 Lcom/android/okhttp/Call$AsyncCall;->execute()V 272 Lcom/android/okhttp/Call$AsyncCall;->forWebSocket:Z 273 Lcom/android/okhttp/Call$AsyncCall;->get()Lcom/android/okhttp/Call; [all …]
|