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

/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonConnector.java610 // This is used under the protection of a sync of the mPendingCmds object.
613 // (it goes to zero) we can remove this object from the mPendingCmds list.
622 // mPendingCmds queue.
631 private final LinkedList<PendingCmd> mPendingCmds; field in class:NativeDaemonConnector.ResponseQueue
635 mPendingCmds = new LinkedList<PendingCmd>();
641 synchronized (mPendingCmds) {
642 for (PendingCmd pendingCmd : mPendingCmds) {
650 while (mPendingCmds.size() >= mMaxCount) {
652 "more buffered than allowed: " + mPendingCmds.size() +
655 PendingCmd pendingCmd = mPendingCmds
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsUt.java72 private HashMap<Integer, Message> mPendingCmds = field in class:ImsUt
95 if (!mPendingCmds.isEmpty()) {
97 mPendingCmds.entrySet().toArray(new Map.Entry[mPendingCmds.size()]);
104 mPendingCmds.clear();
136 mPendingCmds.put(Integer.valueOf(id), result);
165 mPendingCmds.put(Integer.valueOf(id), result);
193 mPendingCmds.put(Integer.valueOf(id), result);
220 mPendingCmds.put(Integer.valueOf(id), result);
246 mPendingCmds
[all...]

Completed in 266 milliseconds