Home
last modified time | relevance | path

Searched refs:AllocateMessageState (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
Dmock_service_endpoint.h66 MOCK_METHOD0(AllocateMessageState, void*());
Dservice_endpoint.h133 virtual void* AllocateMessageState() = 0;
/frameworks/native/libs/vr/libpdx_uds/private/uds/
Dservice_endpoint.h81 void* AllocateMessageState() override;
/frameworks/native/libs/vr/libpdx/
Dservice_tests.cpp133 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(kState)); in SetupMessageInfoAndDefaultExpectations()
174 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(kState)); in TEST_F()
202 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(nullptr)); in TEST_F()
339 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(nullptr)); in TEST_F()
Dservice.cpp29 state_ = svc->endpoint()->AllocateMessageState();
/frameworks/native/libs/vr/libpdx_uds/
Dservice_endpoint.cpp209 void* Endpoint::AllocateMessageState() { return new MessageState; } in AllocateMessageState() function in android::pdx::uds::Endpoint