Searched refs:mPendingCmds (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnector.java496 // This is used under the protection of a sync of the mPendingCmds object.
499 // (it goes to zero) we can remove this object from the mPendingCmds list.
508 // mPendingCmds queue.
517 private final LinkedList<PendingCmd> mPendingCmds; field in class:NativeDaemonConnector.ResponseQueue
521 mPendingCmds = new LinkedList<PendingCmd>();
527 synchronized (mPendingCmds) {
528 for (PendingCmd pendingCmd : mPendingCmds) {
536 while (mPendingCmds.size() >= mMaxCount) {
538 "more buffered than allowed: " + mPendingCmds.size() +
541 PendingCmd pendingCmd = mPendingCmds
[all...]

Completed in 36 milliseconds