Home
last modified time | relevance | path

Searched refs:AllocateMessageState (Results 1 – 7 of 7) 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/
Dservice_tests.cpp135 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(kState)); in SetupMessageInfoAndDefaultExpectations()
176 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(kState)); in TEST_F()
204 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(nullptr)); in TEST_F()
341 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(nullptr)); in TEST_F()
Dservice.cpp29 state_ = svc->endpoint()->AllocateMessageState();
/frameworks/native/libs/vr/libpdx_uds/private/uds/
Dservice_endpoint.h81 void* AllocateMessageState() override;
/frameworks/native/libs/vr/libpdx/fuzz/
Dhelpers.h279 void* AllocateMessageState() { return nullptr; } in AllocateMessageState() function
/frameworks/native/libs/vr/libpdx_uds/
Dservice_endpoint.cpp209 void* Endpoint::AllocateMessageState() { return new MessageState; } in AllocateMessageState() function in android::pdx::uds::Endpoint