Lines Matching refs:mAudioCommands
1175 if (!mAudioCommands.isEmpty()) { in ~AudioCommandThread()
1178 mAudioCommands.clear(); in ~AudioCommandThread()
1194 while (!mAudioCommands.isEmpty() && !exitPending()) { in threadLoop()
1197 if (mAudioCommands[0]->mTime <= curTime) { in threadLoop()
1198 sp<AudioCommand> command = mAudioCommands[0]; in threadLoop()
1199 mAudioCommands.removeAt(0); in threadLoop()
1388 waitTime = mAudioCommands[0]->mTime - curTime; in threadLoop()
1394 if (mAudioCommands.isEmpty()) { in threadLoop()
1410 if (!mAudioCommands.isEmpty()) { in threadLoop()
1436 for (size_t i = 0; i < mAudioCommands.size(); i++) { in dump()
1437 mAudioCommands[i]->dump(buffer, SIZE); in dump()
1691 if (mAudioCommands.isEmpty()) { in insertCommand_l()
1696 for (i = (ssize_t)mAudioCommands.size()-1; i >= 0; i--) { in insertCommand_l()
1697 sp<AudioCommand> command2 = mAudioCommands[i]; in insertCommand_l()
1836 for (size_t k = i + 1; k < mAudioCommands.size(); k++) { in insertCommand_l()
1837 if (mAudioCommands[k].get() == removedCommands[j].get()) { in insertCommand_l()
1838 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand); in insertCommand_l()
1839 mAudioCommands.removeAt(k); in insertCommand_l()
1855 command->mCommand, i+1, mAudioCommands.size()); in insertCommand_l()
1856 mAudioCommands.insertAt(command, i + 1); in insertCommand_l()