Home
last modified time | relevance | path

Searched refs:mDtmfQueue (Results 1 – 1 of 1) sorted by relevance

/packages/services/Telephony/src/com/android/services/telephony/
DCdmaConnection.java69 private final Queue<Character> mDtmfQueue = new LinkedList<>(); field in CdmaConnection
246 synchronized(mDtmfQueue) { in sendShortDtmfToNetwork()
248 mDtmfQueue.add(new Character(digit)); in sendShortDtmfToNetwork()
263 synchronized(mDtmfQueue) { in handleBurstDtmfConfirmation()
265 if (!mDtmfQueue.isEmpty()) { in handleBurstDtmfConfirmation()
266 StringBuilder builder = new StringBuilder(mDtmfQueue.size()); in handleBurstDtmfConfirmation()
267 while (!mDtmfQueue.isEmpty()) { in handleBurstDtmfConfirmation()
268 builder.append(mDtmfQueue.poll()); in handleBurstDtmfConfirmation()