Home | History | Annotate | Download | only in server

Lines Matching defs:mPendingCmds

620             // This is used under the protection of a sync of the mPendingCmds object.
623 // (it goes to zero) we can remove this object from the mPendingCmds list.
632 // mPendingCmds queue.
641 private final LinkedList<PendingCmd> mPendingCmds;
645 mPendingCmds = new LinkedList<PendingCmd>();
651 synchronized (mPendingCmds) {
652 for (PendingCmd pendingCmd : mPendingCmds) {
660 while (mPendingCmds.size() >= mMaxCount) {
662 "more buffered than allowed: " + mPendingCmds.size() +
665 PendingCmd pendingCmd = mPendingCmds.remove();
671 mPendingCmds.add(found);
676 if (found.availableResponseCount == 0) mPendingCmds.remove(found);
687 synchronized (mPendingCmds) {
688 for (PendingCmd pendingCmd : mPendingCmds) {
696 mPendingCmds.add(found);
701 if (found.availableResponseCount == 0) mPendingCmds.remove(found);
715 synchronized (mPendingCmds) {
716 for (PendingCmd pendingCmd : mPendingCmds) {