/system/tools/aidl/tests/ |
D | aidl_test_client_versioned_interface.cpp | 49 TEST_F(VersionedInterfaceTest, getInterfaceHash) { in TEST_F() argument 50 EXPECT_EQ("9e7be1859820c59d9d55dd133e71a3687b5d2e5b", versioned->getInterfaceHash()); in TEST_F() 101 EXPECT_EQ("9e7be1859820c59d9d55dd133e71a3687b5d2e5b", delegator->getInterfaceHash()); in TEST_F()
|
D | aidl_test_client_ndk_versioned_interface.cpp | 50 TEST_F(VersionedInterfaceTest, getInterfaceHash) { in TEST_F() argument 52 auto status = versioned->getInterfaceHash(&hash); in TEST_F()
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-cpp-source/gen/include/android/aidl/versioned/tests/ |
D | BnFooInterface.h | 21 std::string getInterfaceHash(); 45 std::string getInterfaceHash() override { in getInterfaceHash() function 46 return _aidl_delegate->getInterfaceHash(); in getInterfaceHash()
|
D | IFooInterface.h | 28 virtual std::string getInterfaceHash() = 0; 51 std::string getInterfaceHash() override { in getInterfaceHash() function
|
D | BpFooInterface.h | 21 std::string getInterfaceHash() override;
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-rust-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.rs | 26 fn getInterfaceHash(&self) -> binder::Result<String> { in getInterfaceHash() method 45 fn getInterfaceHash<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<String>> { in getInterfaceHash() method 114 …pub const getInterfaceHash: binder::binder_impl::TransactionCode = binder::binder_impl::FIRST_CALL… constant 247 fn getInterfaceHash(&self) -> binder::Result<String> { in getInterfaceHash() method 255 …let _aidl_reply = self.binder.submit_transact(transactions::getInterfaceHash, _aidl_data, binder::… in getInterfaceHash() 327 fn getInterfaceHash<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<String>> { in getInterfaceHash() method 340 …move || binder.submit_transact(transactions::getInterfaceHash, _aidl_data, binder::binder_impl::FL… in getInterfaceHash() 353 fn getInterfaceHash(&self) -> binder::Result<String> { self.0.getInterfaceHash() } in getInterfaceHash() method 419 transactions::getInterfaceHash => { in on_transact() 420 let _aidl_return = _aidl_service.getInterfaceHash(); in on_transact()
|
/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | TestVersionedInterface.java | 56 assertThat(service.getInterfaceHash(), is("9e7be1859820c59d9d55dd133e71a3687b5d2e5b")); in testGetInterfaceHash() 113 assertThat(delegator.getInterfaceHash(), is("9e7be1859820c59d9d55dd133e71a3687b5d2e5b")); in testDelegatorGetInterfaceHash()
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-ndk-source/gen/include/aidl/android/aidl/versioned/tests/ |
D | IFooInterface.h | 43 virtual ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) = 0; 54 ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) override;
|
D | BpFooInterface.h | 22 ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) override;
|
D | BnFooInterface.h | 24 ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) final;
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-java-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.java | 38 public String getInterfaceHash() { in getInterfaceHash() method in IFooInterface.Default 95 reply.writeString(getInterfaceHash()); in onTransact() 275 public synchronized String getInterfaceHash() throws android.os.RemoteException { in getInterfaceHash() method in IFooInterface.Stub.Proxy 305 public String getInterfaceHash() throws android.os.RemoteException; in getInterfaceHash() method
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-ndk-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.cpp | 114 ::ndk::ScopedAStatus _aidl_status = _aidl_impl->getInterfaceHash(&_aidl_return); in _aidl_android_aidl_versioned_tests_IFooInterface_onTransact() 343 ::ndk::ScopedAStatus BpFooInterface::getInterfaceHash(std::string* _aidl_return) { in getInterfaceHash() function in aidl::android::aidl::versioned::tests::BpFooInterface 369 _aidl_status = IFooInterface::getDefaultImpl()->getInterfaceHash(_aidl_return); in getInterfaceHash() 401 ::ndk::ScopedAStatus BnFooInterface::getInterfaceHash(std::string* _aidl_return) { in getInterfaceHash() function in aidl::android::aidl::versioned::tests::BnFooInterface 469 ::ndk::ScopedAStatus IFooInterfaceDefault::getInterfaceHash(std::string* _aidl_return) { in getInterfaceHash() function in aidl::android::aidl::versioned::tests::IFooInterfaceDefault
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-cpp-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.cpp | 200 std::string BpFooInterface::getInterfaceHash() { in getInterfaceHash() function in android::aidl::versioned::tests::BpFooInterface 393 std::string BnFooInterface::getInterfaceHash() { in getInterfaceHash() function in android::aidl::versioned::tests::BnFooInterface
|
/system/tools/aidl/tests/java/src/android/aidl/service/ |
D | TestServiceServer.java | 100 public final String getInterfaceHash() { in getInterfaceHash() method in TestServiceServer.FooInterface
|
/system/tools/aidl/tests/rust/ |
D | test_client.rs | 879 let hash = service.getInterfaceHash(); in test_versioned_interface_hash()
|