Searched refs:AllocateMessageState (Results 1 – 7 of 7) sorted by relevance
66 MOCK_METHOD0(AllocateMessageState, void*());
133 virtual void* AllocateMessageState() = 0;
135 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()
29 state_ = svc->endpoint()->AllocateMessageState();
81 void* AllocateMessageState() override;
279 void* AllocateMessageState() { return nullptr; } in AllocateMessageState() function
209 void* Endpoint::AllocateMessageState() { return new MessageState; } in AllocateMessageState() function in android::pdx::uds::Endpoint