Searched refs:ProducerQueueChannel (Results 1 – 6 of 6) sorted by relevance
/aosp12/frameworks/native/services/vr/bufferhubd/ |
H A D | producer_queue_channel.cpp | 16 ProducerQueueChannel::ProducerQueueChannel(BufferHubService* service, in ProducerQueueChannel() function in android::dvr::ProducerQueueChannel 28 ProducerQueueChannel::~ProducerQueueChannel() { in ~ProducerQueueChannel() 36 Status<std::shared_ptr<ProducerQueueChannel>> ProducerQueueChannel::Create( in Create() 51 std::shared_ptr<ProducerQueueChannel> producer(new ProducerQueueChannel( in Create() 59 bool ProducerQueueChannel::HandleMessage(Message& message) { in HandleMessage() 69 *this, &ProducerQueueChannel::OnGetQueueInfo, message); in HandleMessage() 93 void ProducerQueueChannel::HandleImpulse(Message& /* message */) { in HandleImpulse() 142 Status<QueueInfo> ProducerQueueChannel::OnGetQueueInfo(Message&) { in OnGetQueueInfo() 147 ProducerQueueChannel::OnProducerQueueAllocateBuffers( in OnProducerQueueAllocateBuffers() 285 Status<size_t> ProducerQueueChannel::OnProducerQueueInsertBuffer( in OnProducerQueueInsertBuffer() [all …]
|
H A D | consumer_queue_channel.cpp | 44 *producer, &ProducerQueueChannel::OnCreateConsumerQueue, message); in HandleMessage() 49 *producer, &ProducerQueueChannel::OnGetQueueInfo, message); in HandleMessage() 62 std::shared_ptr<ProducerQueueChannel> ConsumerQueueChannel::GetProducer() in GetProducer() 64 return std::static_pointer_cast<ProducerQueueChannel>(producer_.lock()); in GetProducer()
|
H A D | buffer_hub.cpp | 300 auto status = ProducerQueueChannel::Create(this, queue_id, producer_config, in OnCreateProducerQueue()
|
/aosp12/frameworks/native/services/vr/bufferhubd/include/private/dvr/ |
H A D | producer_queue_channel.h | 11 class ProducerQueueChannel : public BufferHubChannel { 13 static pdx::Status<std::shared_ptr<ProducerQueueChannel>> Create( 16 ~ProducerQueueChannel() override; 53 ProducerQueueChannel(BufferHubService* service, int channel_id, 87 ProducerQueueChannel(const ProducerQueueChannel&) = delete; 88 void operator=(const ProducerQueueChannel&) = delete;
|
H A D | consumer_queue_channel.h | 60 std::shared_ptr<ProducerQueueChannel> GetProducer() const;
|
H A D | buffer_hub.h | 19 class ProducerQueueChannel; variable
|