HomeSort by relevance Sort by last modified time
    Searched refs:postDialString (Results 1 - 3 of 3) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipConnectionBase.java 35 private String postDialString; // outgoing calls only
36 private int nextPostDialChar; // index into postDialString
63 postDialString = PhoneNumberUtils.extractPostDialPortion(dialString);
158 || postDialString == null
159 || postDialString.length() <= nextPostDialChar) {
163 return postDialString.substring(nextPostDialChar);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmConnection.java 45 String postDialString; // outgoing calls only
70 int nextPostDialChar; // index into postDialString
149 this.postDialString = PhoneNumberUtils.extractPostDialPortion(dialString);
302 // make a new postDialString, with the wild char replacement string
303 // at the beginning, followed by the remaining postDialString.
306 buf.append(postDialString.substring(nextPostDialChar));
307 postDialString = buf.toString();
310 log("proceedAfterWildChar: new postDialString is " +
311 postDialString);
573 || postDialString == nul
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaConnection.java 50 String postDialString; // outgoing calls only
74 int nextPostDialChar; // index into postDialString
157 this.postDialString = PhoneNumberUtils.extractPostDialPortion(dialString);
354 // make a new postDialString, with the wild char replacement string
355 // at the beginning, followed by the remaining postDialString.
358 buf.append(postDialString.substring(nextPostDialChar));
359 postDialString = buf.toString();
362 log("proceedAfterWildChar: new postDialString is " +
363 postDialString);
644 || postDialString == nul
    [all...]

Completed in 90 milliseconds