Home
last modified time | relevance | path

Searched refs:ProducerChannel (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/services/vr/bufferhubd/
Dproducer_channel.cpp28 ProducerChannel::ProducerChannel(BufferHubService* service, int buffer_id, in ProducerChannel() function in android::dvr::ProducerChannel
52 ProducerChannel::ProducerChannel(BufferHubService* service, int channel_id, in ProducerChannel() function in android::dvr::ProducerChannel
81 int ProducerChannel::InitializeBuffer() { in InitializeBuffer()
134 std::unique_ptr<ProducerChannel> ProducerChannel::Create( in Create()
138 std::unique_ptr<ProducerChannel> producer(new ProducerChannel( in Create()
148 Status<std::shared_ptr<ProducerChannel>> ProducerChannel::Create( in Create()
153 std::shared_ptr<ProducerChannel> producer( in Create()
154 new ProducerChannel(service, channel_id, width, height, layer_count, in Create()
162 ProducerChannel::~ProducerChannel() { in ~ProducerChannel()
174 BufferHubChannel::BufferInfo ProducerChannel::GetBufferInfo() const { in GetBufferInfo()
[all …]
Dconsumer_channel.cpp50 std::shared_ptr<ProducerChannel> ConsumerChannel::GetProducer() const { in GetProducer()
51 return std::static_pointer_cast<ProducerChannel>(producer_.lock()); in GetProducer()
80 *producer, &ProducerChannel::OnNewConsumer, message); in HandleMessage()
Dproducer_queue_channel.cpp230 ProducerChannel::Create(service(), buffer_id, width, height, layer_count, in AllocateBuffer()
296 auto producer_channel = std::static_pointer_cast<ProducerChannel>( in OnProducerQueueInsertBuffer()
Dconsumer_queue_channel.cpp83 const std::shared_ptr<ProducerChannel>& producer_channel, in RegisterNewBuffer()
Dbuffer_hub.cpp272 auto status = ProducerChannel::Create(this, buffer_id, width, height, in OnCreateBuffer()
/frameworks/native/services/vr/bufferhubd/include/private/dvr/
Dproducer_channel.h24 class ProducerChannel : public BufferHubChannel {
32 static std::unique_ptr<ProducerChannel> Create(BufferHubService* service,
38 static pdx::Status<std::shared_ptr<ProducerChannel>> Create(
43 ~ProducerChannel() override;
99 ProducerChannel(BufferHubService* service, int buffer_id, int channel_id,
102 ProducerChannel(BufferHubService* service, int channel, uint32_t width,
119 ProducerChannel(const ProducerChannel&) = delete;
120 void operator=(const ProducerChannel&) = delete;
Dconsumer_queue_channel.h31 const std::shared_ptr<ProducerChannel>& producer_channel,
47 PendingBuffer(std::shared_ptr<ProducerChannel> channel, size_t slot, in PendingBuffer()
55 std::weak_ptr<ProducerChannel> producer_channel;
Dconsumer_channel.h34 std::shared_ptr<ProducerChannel> GetProducer() const;
Dproducer_queue_channel.h85 std::weak_ptr<ProducerChannel> buffers_[BufferHubRPC::kMaxQueueCapacity];
Dbuffer_hub.h17 class ProducerChannel; variable