HomeSort by relevance Sort by last modified time
    Searched defs:mPendingCmds (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsUt.java 72 private HashMap<Integer, Message> mPendingCmds =
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.put(Integer.valueOf(id), result)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonConnector.java 610 // 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;
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.remove()
    [all...]

Completed in 79 milliseconds