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