Home
last modified time | relevance | path

Searched refs:SetChannel (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/services/vr/bufferhubd/
Dbuffer_hub.cpp266 SetChannel(channel->channel_id(), nullptr); in HandleMessage()
274 SetChannel(channel->channel_id(), nullptr); in HandleMessage()
304 message.SetChannel(status.take()); in OnCreateBuffer()
346 message.SetChannel(std::move(channel)); in OnCreateDetachedBuffer()
368 message.SetChannel(status.take()); in OnCreateProducerQueue()
Dproducer_queue_channel.cpp126 service()->SetChannel(channel_id, consumer_queue_channel); in OnCreateConsumerQueue()
243 service()->SetChannel(buffer_id, producer_channel); in AllocateBuffer()
Ddetached_buffer_channel.cpp145 service()->SetChannel(channel_id, std::move(channel)); in OnPromote()
Dproducer_channel.cpp282 const auto channel_status = service()->SetChannel(channel_id, consumer); in CreateConsumer()
428 service()->SetChannel(channel_id, std::move(channel)); in OnProducerDetach()
/frameworks/native/libs/vr/libpdx/
Dservice.cpp435 Status<void> Message::SetChannel(const std::shared_ptr<Channel>& chan) { in SetChannel() function in android::pdx::Message
439 status = svc->SetChannel(info_.cid, chan); in SetChannel()
479 Status<void> Service::SetChannel(int channel_id, in SetChannel() function in android::pdx::Service
484 const auto status = endpoint_->SetChannel(channel_id, channel.get()); in SetChannel()
592 message.SetChannel(OnChannelOpen(message)); in HandleSystemMessage()
600 message.SetChannel(nullptr); in HandleSystemMessage()
Dservice_tests.cpp226 EXPECT_CALL(*endpoint(), SetChannel(kTestCid, channel.get())) in TEST_F()
243 EXPECT_CALL(*endpoint(), SetChannel(kTestCid, nullptr)) in TEST_F()
/frameworks/native/libs/vr/libpdx/private/pdx/
Dmock_service_endpoint.h14 MOCK_METHOD2(SetChannel, Status<void>(int channel_id, Channel* channel));
Dservice_endpoint.h50 virtual Status<void> SetChannel(int channel_id, Channel* channel) = 0;
Dservice.h304 Status<void> SetChannel(const std::shared_ptr<Channel>& channnel);
395 Status<void> SetChannel(int channel_id,
/frameworks/native/libs/vr/libpdx_uds/private/uds/
Dservice_endpoint.h43 Status<void> SetChannel(int channel_id, Channel* channel) override;
/frameworks/native/libs/vr/libvrflinger/
Ddisplay_service.cpp251 message.SetChannel(surface); in OnCreateSurface()
/frameworks/native/libs/vr/libpdx_uds/
Dservice_endpoint.cpp265 Status<void> Endpoint::SetChannel(int channel_id, Channel* channel) { in SetChannel() function in android::pdx::uds::Endpoint