Home
last modified time | relevance | path

Searched refs:ListSpaces (Results 1 – 25 of 25) sorted by relevance

/system/tpm/tpm_manager/client/
Dtpm_nvram_binder_proxy.cc107 void TpmNvramBinderProxy::ListSpaces(const ListSpacesRequest& request, in ListSpaces() function in tpm_manager::TpmNvramBinderProxy
109 auto method = base::Bind(&ITpmNvram::ListSpaces, base::Unretained(binder_)); in ListSpaces()
Dtpm_nvram_binder_proxy.h51 void ListSpaces(const ListSpacesRequest& request,
Dtpm_nvram_dbus_proxy.h58 void ListSpaces(const ListSpacesRequest& request,
Dtpm_nvram_dbus_proxy.cc75 void TpmNvramDBusProxy::ListSpaces(const ListSpacesRequest& request, in ListSpaces() function in tpm_manager::TpmNvramDBusProxy
Dtpm_nvram_dbus_proxy_test.cc223 TEST_F(TpmNvramDBusProxyTest, ListSpaces) { in TEST_F() argument
257 proxy_.ListSpaces(request, base::Bind(callback)); in TEST_F()
Dmain.cc480 tpm_nvram_->ListSpaces( in HandleListSpaces()
/system/tpm/tpm_manager/aidl/android/tpm_manager/
DITpmNvram.aidl29 oneway void ListSpaces(in byte[] command_proto, in ITpmManagerClient client); in ListSpaces() method
/system/tpm/tpm_manager/common/
Dmock_tpm_nvram_interface.h46 MOCK_METHOD2(ListSpaces,
Dtpm_nvram_interface.h61 virtual void ListSpaces(const ListSpacesRequest& request,
/system/tpm/tpm_manager/server/
Dtpm_nvram.h63 virtual NvramResult ListSpaces(std::vector<uint32_t>* index_list) = 0;
Dtpm_nvram_impl.h58 NvramResult ListSpaces(std::vector<uint32_t>* index_list) override;
Dbinder_service_test.cc263 TEST_F(BinderServiceTest, ListSpaces) { in TEST_F() argument
266 EXPECT_CALL(mock_nvram_service_, ListSpaces(_, _)) in TEST_F()
278 nvram_proxy_->ListSpaces(request, GetCallback<ListSpacesReply>(&reply)); in TEST_F()
Dtpm2_nvram_impl.h59 NvramResult ListSpaces(std::vector<uint32_t>* index_list) override;
Dmock_tpm_nvram.h56 MOCK_METHOD1(ListSpaces, NvramResult(std::vector<uint32_t>*));
Dtpm_manager_service.h93 void ListSpaces(const ListSpacesRequest& request,
Dbinder_service.cc182 android::binder::Status BinderService::NvramServiceInternal::ListSpaces( in ListSpaces() function in tpm_manager::BinderService::NvramServiceInternal
186 command_proto, base::Bind(&TpmNvramInterface::ListSpaces, in ListSpaces()
Dbinder_service.h78 android::binder::Status ListSpaces(
Dtpm_manager_service.cc258 void TpmManagerService::ListSpaces(const ListSpacesRequest& request, in ListSpaces() function in tpm_manager::TpmManagerService
269 reply->set_result(tpm_nvram_->ListSpaces(&index_list)); in ListSpacesTask()
Ddbus_service.cc113 &TpmNvramInterface::ListSpaces>); in RegisterDBusObjectsAsync()
Dmock_tpm_nvram.cc36 ON_CALL(*this, ListSpaces(_)) in MockTpmNvram()
Ddbus_service_test.cc280 TEST_F(DBusServiceTest, ListSpaces) { in TEST_F() argument
283 EXPECT_CALL(mock_nvram_service_, ListSpaces(_, _)) in TEST_F()
Dtpm2_nvram_test.cc533 EXPECT_EQ(NVRAM_RESULT_SUCCESS, tpm_nvram_->ListSpaces(&spaces)); in TEST_F()
541 EXPECT_NE(NVRAM_RESULT_SUCCESS, tpm_nvram_->ListSpaces(&spaces)); in TEST_F()
Dtpm_nvram_impl.cc374 NvramResult TpmNvramImpl::ListSpaces(std::vector<uint32_t>* index_list) { in ListSpaces() function in tpm_manager::TpmNvramImpl
Dtpm2_nvram_impl.cc428 NvramResult Tpm2NvramImpl::ListSpaces(std::vector<uint32_t>* index_list) { in ListSpaces() function in tpm_manager::Tpm2NvramImpl
Dtpm_manager_service_test.cc384 service_->ListSpaces(list_request, base::Bind(list_callback, nvram_index)); in TEST_F()