Home
last modified time | relevance | path

Searched refs:fmqResultChannel (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/modules/NeuralNetworks/common/
H A DExecutionBurstController.cpp239 std::unique_ptr<FmqResultChannel> fmqResultChannel = in create() local
241 if (!fmqResultChannel->isValid()) { in create()
246 const FmqResultDescriptor* descriptor = fmqResultChannel->getDesc(); in create()
248 std::make_unique<ResultChannelReceiver>(std::move(fmqResultChannel), pollingTimeWindow), in create()
252 ResultChannelReceiver::ResultChannelReceiver(std::unique_ptr<FmqResultChannel> fmqResultChannel, in ResultChannelReceiver() argument
254 : mFmqResultChannel(std::move(fmqResultChannel)), kPollingTimeWindow(pollingTimeWindow) {} in ResultChannelReceiver()
H A DExecutionBurstServer.cpp452 std::unique_ptr<FmqResultChannel> fmqResultChannel = in create() local
455 if (!fmqResultChannel->isValid()) { in create()
459 if (fmqResultChannel->getEventFlagWord() == nullptr) { in create()
464 return std::make_unique<ResultChannelSender>(std::move(fmqResultChannel)); in create()
467 ResultChannelSender::ResultChannelSender(std::unique_ptr<FmqResultChannel> fmqResultChannel) in ResultChannelSender() argument
468 : mFmqResultChannel(std::move(fmqResultChannel)) {} in ResultChannelSender()
/aosp12/hardware/interfaces/neuralnetworks/1.2/vts/functional/
H A DValidateBurst.cpp70 auto [fmqResultChannel, fmqResultDescriptor] = in createBurst()
73 ASSERT_NE(nullptr, fmqResultChannel.get()); in createBurst()
92 *receiver = std::move(fmqResultChannel); in createBurst()
/aosp12/hardware/interfaces/neuralnetworks/1.3/vts/functional/
H A DValidateBurst.cpp75 auto [fmqResultChannel, fmqResultDescriptor] = in createBurst()
78 ASSERT_NE(nullptr, fmqResultChannel.get()); in createBurst()
98 *receiver = std::move(fmqResultChannel); in createBurst()
/aosp12/packages/modules/NeuralNetworks/common/include/
H A DExecutionBurstServer.h170 ResultChannelSender(std::unique_ptr<FmqResultChannel> fmqResultChannel);
H A DExecutionBurstController.h140 ResultChannelReceiver(std::unique_ptr<FmqResultChannel> fmqResultChannel,