Searched refs:SetToken (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/gpu/command_buffer/service/
H A Dmocks.cc35 void AsyncAPIMock::SetToken(unsigned int command, function in class:gpu::AsyncAPIMock
41 const cmd::SetToken* args =
42 static_cast<const cmd::SetToken*>(_args);
H A Dcommand_buffer_service.h27 virtual void SetToken(int32 token) = 0;
62 virtual void SetToken(int32 token) OVERRIDE;
H A Dmocks.h74 // Sets the engine, to forward SetToken commands to it.
77 // Forwards the SetToken commands to the engine.
78 void SetToken(unsigned int command,
H A Dcommand_buffer_service.cc159 void CommandBufferService::SetToken(int32 token) { function in class:gpu::CommandBufferService
H A Dcommand_buffer_service_unittest.cc144 command_buffer_->SetToken(7);
H A Dgpu_scheduler.cc187 command_buffer_->SetToken(token);
H A Dgpu_scheduler_unittest.cc217 EXPECT_CALL(*command_buffer_, SetToken(7));
H A Dcommon_decoder_unittest.cc207 TEST_F(CommonDecoderTest, SetToken) {
208 cmd::SetToken cmd;
H A Dcommon_decoder.cc177 const cmd::SetToken& args) {
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_token_store.h26 void SetToken(const std::string& token);
H A Dcloud_print_token_store_unittest.cc15 CloudPrintTokenStore::current()->SetToken("myclientlogintoken");
H A Dcloud_print_token_store.cc29 void CloudPrintTokenStore::SetToken(const std::string& token) { function in class:cloud_print::CloudPrintTokenStore
H A Dcloud_print_proxy_backend.cc283 token_store->SetToken(access_token);
H A Dprinter_job_handler_unittest.cc494 token_store_.SetToken(kExampleCloudPrintOAuthToken);
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer_test.cc44 api_mock_->SetToken(cmd::kSetToken, 1, *it);
50 void SetToken(unsigned int command, function in class:gpu::BaseRingBufferTest
58 api_mock_->SetToken(cmd::kSetToken, 1, _args);
68 // Forward the SetToken calls to the engine
70 .WillRepeatedly(DoAll(Invoke(this, &BaseRingBufferTest::SetToken),
123 // and SetToken are properly forwarded to the engine.
H A Dcmd_buffer_helper.h198 void SetToken(uint32 token) { function in class:gpu::CommandBufferHelper
199 cmd::SetToken* cmd = GetCmdSpace<cmd::SetToken>();
H A Dgles2_implementation_unittest.cc776 cmd::SetToken set_token1;
778 cmd::SetToken set_token2;
894 cmd::SetToken set_token1;
896 cmd::SetToken set_token2;
898 cmd::SetToken set_token3;
938 cmd::SetToken set_token1;
983 cmd::SetToken set_token1;
986 cmd::SetToken set_token2;
1050 cmd::SetToken set_token1;
1053 cmd::SetToken set_token
[all...]
H A Dclient_test_helper.cc97 void MockCommandBufferBase::SetToken(int32 token) { function in class:gpu::MockCommandBufferBase
H A Dclient_test_helper.h41 virtual void SetToken(int32 token) OVERRIDE;
H A Dcmd_buffer_helper.cc207 cmd::SetToken* cmd = GetCmdSpace<cmd::SetToken>();
H A Dcmd_buffer_helper_test.cc579 .WillOnce(DoAll(Invoke(api_mock_.get(), &AsyncAPIMock::SetToken),
606 .WillOnce(DoAll(Invoke(api_mock_.get(), &AsyncAPIMock::SetToken),
646 .WillOnce(DoAll(Invoke(api_mock_.get(), &AsyncAPIMock::SetToken),
H A Dmapped_memory_unittest.cc42 // Forward the SetToken calls to the engine
44 .WillRepeatedly(DoAll(Invoke(api_mock_.get(), &AsyncAPIMock::SetToken),
97 // and SetToken are properly forwarded to the engine.
H A Dfenced_allocator_test.cc46 // Forward the SetToken calls to the engine
48 .WillRepeatedly(DoAll(Invoke(api_mock_.get(), &AsyncAPIMock::SetToken),
100 // and SetToken are properly forwarded to the engine.
462 // RPC mechanism), making sure Noops are ignored and SetToken are properly
/external/chromium_org/gpu/command_buffer/common/
H A Dcommand_buffer_mock.h36 MOCK_METHOD1(SetToken, void(int32 token));
H A Dcmd_buffer_common.h158 OP(SetToken) /* 1 */ \
209 // The SetToken command puts a token in the command stream that you can
211 struct SetToken { struct in namespace:gpu::cmd
212 typedef SetToken ValueType;
234 COMPILE_ASSERT(sizeof(SetToken) == 8, Sizeof_SetToken_is_not_8);
235 COMPILE_ASSERT(offsetof(SetToken, header) == 0,
237 COMPILE_ASSERT(offsetof(SetToken, token) == 4,

Completed in 5309 milliseconds

12