• Home
  • Raw
  • Download

Lines Matching refs:input

79     static boolean handleChars(Context context, String input) {  in handleChars()  argument
80 return handleChars(context, input, null); in handleChars()
106 String input, in handleChars() argument
110 String dialString = PhoneNumberUtils.stripSeparators(input); in handleChars()
132 String input, in handleCharsForLockedDevice() argument
135 String dialString = PhoneNumberUtils.stripSeparators(input); in handleCharsForLockedDevice()
158 static private boolean handleSecretCode(String input) { in handleSecretCode() argument
160 int len = input.length(); in handleSecretCode()
161 if (len > 8 && input.startsWith("*#*#") && input.endsWith("#*#*")) { in handleSecretCode()
163 phone.sendDialerSpecialCode(input.substring(4, len - 4)); in handleSecretCode()
169 static private boolean handleAdnEntry(Context context, String input) { in handleAdnEntry() argument
180 int len = input.length(); in handleAdnEntry()
181 if ((len > 1) && (len < 5) && (input.endsWith("#"))) { in handleAdnEntry()
183 int index = Integer.parseInt(input.substring(0, len-1)); in handleAdnEntry()
235 static private boolean handlePinEntry(Context context, String input, in handlePinEntry() argument
240 if ((input.startsWith("**04") || input.startsWith("**05")) in handlePinEntry()
241 && input.endsWith("#")) { in handlePinEntry()
248 if (input.startsWith("**04")) { in handlePinEntry()
260 boolean isMMIHandled = phone.handlePinMmi(input); in handlePinEntry()
267 if (isMMIHandled && input.startsWith("**05")) { in handlePinEntry()
286 String input) { in handleIMEIDisplay() argument
287 if (input.equals(MMI_IMEI_DISPLAY)) { in handleIMEIDisplay()
312 private static boolean handleRegulatoryInfoDisplay(Context context, String input) { in handleRegulatoryInfoDisplay() argument
313 if (input.equals(MMI_REGULATORY_INFO_DISPLAY)) { in handleRegulatoryInfoDisplay()