Lines Matching refs:mAudioCommands
1030 if (!mAudioCommands.isEmpty()) { in ~AudioCommandThread()
1033 mAudioCommands.clear(); in ~AudioCommandThread()
1049 while (!mAudioCommands.isEmpty() && !exitPending()) { in threadLoop()
1052 if (mAudioCommands[0]->mTime <= curTime) { in threadLoop()
1053 sp<AudioCommand> command = mAudioCommands[0]; in threadLoop()
1054 mAudioCommands.removeAt(0); in threadLoop()
1233 waitTime = mAudioCommands[0]->mTime - curTime; in threadLoop()
1239 if (mAudioCommands.isEmpty()) { in threadLoop()
1255 if (!mAudioCommands.isEmpty()) { in threadLoop()
1281 for (size_t i = 0; i < mAudioCommands.size(); i++) { in dump()
1282 mAudioCommands[i]->dump(buffer, SIZE); in dump()
1529 if (mAudioCommands.isEmpty()) { in insertCommand_l()
1534 for (i = (ssize_t)mAudioCommands.size()-1; i >= 0; i--) { in insertCommand_l()
1535 sp<AudioCommand> command2 = mAudioCommands[i]; in insertCommand_l()
1674 for (size_t k = i + 1; k < mAudioCommands.size(); k++) { in insertCommand_l()
1675 if (mAudioCommands[k].get() == removedCommands[j].get()) { in insertCommand_l()
1676 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand); in insertCommand_l()
1677 mAudioCommands.removeAt(k); in insertCommand_l()
1693 command->mCommand, i+1, mAudioCommands.size()); in insertCommand_l()
1694 mAudioCommands.insertAt(command, i + 1); in insertCommand_l()