Searched refs:ProducerChannel (Results 1 – 10 of 10) sorted by relevance
/frameworks/native/services/vr/bufferhubd/ |
D | producer_channel.cpp | 28 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 …]
|
D | consumer_channel.cpp | 50 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()
|
D | producer_queue_channel.cpp | 230 ProducerChannel::Create(service(), buffer_id, width, height, layer_count, in AllocateBuffer() 296 auto producer_channel = std::static_pointer_cast<ProducerChannel>( in OnProducerQueueInsertBuffer()
|
D | consumer_queue_channel.cpp | 83 const std::shared_ptr<ProducerChannel>& producer_channel, in RegisterNewBuffer()
|
D | buffer_hub.cpp | 272 auto status = ProducerChannel::Create(this, buffer_id, width, height, in OnCreateBuffer()
|
/frameworks/native/services/vr/bufferhubd/include/private/dvr/ |
D | producer_channel.h | 24 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;
|
D | consumer_queue_channel.h | 31 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;
|
D | consumer_channel.h | 34 std::shared_ptr<ProducerChannel> GetProducer() const;
|
D | producer_queue_channel.h | 85 std::weak_ptr<ProducerChannel> buffers_[BufferHubRPC::kMaxQueueCapacity];
|
D | buffer_hub.h | 17 class ProducerChannel; variable
|