Lines Matching refs:input

78     static boolean handleChars(Context context, String input) {  in handleChars()  argument
79 return handleChars(context, input, null); in handleChars()
105 String input, in handleChars() argument
109 String dialString = PhoneNumberUtils.stripSeparators(input); in handleChars()
131 String input, in handleCharsForLockedDevice() argument
134 String dialString = PhoneNumberUtils.stripSeparators(input); in handleCharsForLockedDevice()
157 static private boolean handleSecretCode(String input) { in handleSecretCode() argument
159 int len = input.length(); in handleSecretCode()
160 if (len > 8 && input.startsWith("*#*#") && input.endsWith("#*#*")) { in handleSecretCode()
162 phone.sendDialerSpecialCode(input.substring(4, len - 4)); in handleSecretCode()
168 static private boolean handleAdnEntry(Context context, String input) { in handleAdnEntry() argument
179 int len = input.length(); in handleAdnEntry()
180 if ((len > 1) && (len < 5) && (input.endsWith("#"))) { in handleAdnEntry()
182 int index = Integer.parseInt(input.substring(0, len-1)); in handleAdnEntry()
234 static private boolean handlePinEntry(Context context, String input, in handlePinEntry() argument
239 if ((input.startsWith("**04") || input.startsWith("**05")) in handlePinEntry()
240 && input.endsWith("#")) { in handlePinEntry()
247 if (input.startsWith("**04")) { in handlePinEntry()
259 boolean isMMIHandled = phone.handlePinMmi(input); in handlePinEntry()
266 if (isMMIHandled && input.startsWith("**05")) { in handlePinEntry()
285 String input) { in handleIMEIDisplay() argument
286 if (input.equals(MMI_IMEI_DISPLAY)) { in handleIMEIDisplay()
311 private static boolean handleRegulatoryInfoDisplay(Context context, String input) { in handleRegulatoryInfoDisplay() argument
312 if (input.equals(MMI_REGULATORY_INFO_DISPLAY)) { in handleRegulatoryInfoDisplay()