Lines Matching refs:mAudioCommands
1619 if (!mAudioCommands.isEmpty()) { in ~AudioCommandThread()
1622 mAudioCommands.clear(); in ~AudioCommandThread()
1638 while (!mAudioCommands.isEmpty() && !exitPending()) { in threadLoop()
1641 if (mAudioCommands[0]->mTime <= curTime) { in threadLoop()
1642 sp<AudioCommand> command = mAudioCommands[0]; in threadLoop()
1643 mAudioCommands.removeAt(0); in threadLoop()
1864 waitTime = mAudioCommands[0]->mTime - curTime; in threadLoop()
1870 if (mAudioCommands.isEmpty()) { in threadLoop()
1886 if (!mAudioCommands.isEmpty()) { in threadLoop()
1912 for (size_t i = 0; i < mAudioCommands.size(); i++) { in dump()
1913 mAudioCommands[i]->dump(buffer, SIZE); in dump()
2191 if (mAudioCommands.isEmpty()) { in insertCommand_l()
2196 for (i = (ssize_t)mAudioCommands.size()-1; i >= 0; i--) { in insertCommand_l()
2197 sp<AudioCommand> command2 = mAudioCommands[i]; in insertCommand_l()
2340 for (size_t k = i + 1; k < mAudioCommands.size(); k++) { in insertCommand_l()
2341 if (mAudioCommands[k].get() == removedCommands[j].get()) { in insertCommand_l()
2342 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand); in insertCommand_l()
2343 mAudioCommands.removeAt(k); in insertCommand_l()
2359 command->mCommand, i+1, mAudioCommands.size()); in insertCommand_l()
2360 mAudioCommands.insertAt(command, i + 1); in insertCommand_l()