Home
last modified time | relevance | path

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

/frameworks/native/libs/vr/libpdx/
Dservice.cpp429 Status<void> Message::SetChannel(const std::shared_ptr<Channel>& chan) { in SetChannel() function in android::pdx::Message
433 status = svc->SetChannel(info_.cid, chan); in SetChannel()
473 Status<void> Service::SetChannel(int channel_id, in SetChannel() function in android::pdx::Service
478 const auto status = endpoint_->SetChannel(channel_id, channel.get()); in SetChannel()
586 message.SetChannel(OnChannelOpen(message)); in HandleSystemMessage()
594 message.SetChannel(nullptr); in HandleSystemMessage()
Dservice_tests.cpp228 EXPECT_CALL(*endpoint(), SetChannel(kTestCid, channel.get())) in TEST_F()
245 EXPECT_CALL(*endpoint(), SetChannel(kTestCid, nullptr)) in TEST_F()
/frameworks/native/libs/vr/libpdx/fuzz/
Dservice_dispatcher_fuzzer.cpp47 service->SetChannel(0, std::shared_ptr<Channel>(channel)); in LLVMFuzzerTestOneInput()
Dhelpers.h76 Status<void> SetChannel(int channel_id, Channel* channel) { in SetChannel() function
/frameworks/native/services/vr/bufferhubd/
Dproducer_queue_channel.cpp130 service()->SetChannel(channel_id, consumer_queue_channel); in OnCreateConsumerQueue()
247 service()->SetChannel(buffer_id, producer_channel); in AllocateBuffer()
Dbuffer_hub.cpp276 message.SetChannel(status.take()); in OnCreateBuffer()
303 message.SetChannel(status.take()); in OnCreateProducerQueue()
Dproducer_channel.cpp325 const auto channel_status = service()->SetChannel(channel_id, consumer); in CreateConsumer()
/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.h313 Status<void> SetChannel(const std::shared_ptr<Channel>& channnel);
404 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.cpp272 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