HomeSort by relevance Sort by last modified time
    Searched refs:tempCommandMQ (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libaudiohal/2.0/
StreamHalHidl.cpp 410 std::unique_ptr<CommandMQ> tempCommandMQ;
424 tempCommandMQ.reset(new CommandMQ(commandMQ));
437 if (!tempCommandMQ || !tempCommandMQ->isValid() ||
441 ALOGE_IF(!tempCommandMQ, "Failed to obtain command message queue for writing");
442 ALOGE_IF(tempCommandMQ && !tempCommandMQ->isValid(),
454 mCommandMQ = std::move(tempCommandMQ);
677 std::unique_ptr<CommandMQ> tempCommandMQ;
691 tempCommandMQ.reset(new CommandMQ(commandMQ))
    [all...]
  /frameworks/av/media/libaudiohal/4.0/
StreamHalHidl.cpp 421 std::unique_ptr<CommandMQ> tempCommandMQ;
435 tempCommandMQ.reset(new CommandMQ(commandMQ));
448 if (!tempCommandMQ || !tempCommandMQ->isValid() ||
452 ALOGE_IF(!tempCommandMQ, "Failed to obtain command message queue for writing");
453 ALOGE_IF(tempCommandMQ && !tempCommandMQ->isValid(),
465 mCommandMQ = std::move(tempCommandMQ);
705 std::unique_ptr<CommandMQ> tempCommandMQ;
719 tempCommandMQ.reset(new CommandMQ(commandMQ))
    [all...]
  /hardware/interfaces/audio/core/all-versions/default/include/core/all-versions/default/
StreamIn.impl.h 354 std::unique_ptr<CommandMQ> tempCommandMQ(new CommandMQ(1));
372 if (!tempCommandMQ->isValid() || !tempDataMQ->isValid() || !tempStatusMQ->isValid()) {
373 ALOGE_IF(!tempCommandMQ->isValid(), "command MQ is invalid");
391 std::make_unique<ReadThread>(&mStopReadThread, mStream, tempCommandMQ.get(),
405 mCommandMQ = std::move(tempCommandMQ);
StreamOut.impl.h 338 std::unique_ptr<CommandMQ> tempCommandMQ(new CommandMQ(1));
355 if (!tempCommandMQ->isValid() || !tempDataMQ->isValid() || !tempStatusMQ->isValid()) {
356 ALOGE_IF(!tempCommandMQ->isValid(), "command MQ is invalid");
374 std::make_unique<WriteThread>(&mStopWriteThread, mStream, tempCommandMQ.get(),
388 mCommandMQ = std::move(tempCommandMQ);

Completed in 371 milliseconds