Home
last modified time | relevance | path

Searched refs:getInterfaceHash (Results 1 – 15 of 15) sorted by relevance

/system/tools/aidl/tests/
Daidl_test_client_versioned_interface.cpp49 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()
Daidl_test_client_ndk_versioned_interface.cpp50 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/
DBnFooInterface.h21 std::string getInterfaceHash();
45 std::string getInterfaceHash() override { in getInterfaceHash() function
46 return _aidl_delegate->getInterfaceHash(); in getInterfaceHash()
DIFooInterface.h28 virtual std::string getInterfaceHash() = 0;
51 std::string getInterfaceHash() override { in getInterfaceHash() function
DBpFooInterface.h21 std::string getInterfaceHash() override;
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V1-rust-source/gen/android/aidl/versioned/tests/
DIFooInterface.rs26 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/
DTestVersionedInterface.java56 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/
DIFooInterface.h43 virtual ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) = 0;
54 ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) override;
DBpFooInterface.h22 ::ndk::ScopedAStatus getInterfaceHash(std::string* _aidl_return) override;
DBnFooInterface.h24 ::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/
DIFooInterface.java38 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/
DIFooInterface.cpp114 ::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/
DIFooInterface.cpp200 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/
DTestServiceServer.java100 public final String getInterfaceHash() { in getInterfaceHash() method in TestServiceServer.FooInterface
/system/tools/aidl/tests/rust/
Dtest_client.rs879 let hash = service.getInterfaceHash(); in test_versioned_interface_hash()