Searched refs:requestName (Results 1 – 1 of 1) sorted by relevance
1306 String requestName = dataString.substring(REQUEST_PREFIX_LEN_STR); in handleRequests() local1307 if (TextUtils.isEmpty(requestName)) { in handleRequests()1310 if (requestName.startsWith(IDENTITY_STR)) { in handleRequests()1311 Matcher match = mRequestIdentityPattern.matcher(requestName); in handleRequests()1320 Log.e(TAG, "didn't find SSID " + requestName); in handleRequests()1323 } else if (requestName.startsWith(SIM_STR)) { in handleRequests()1324 Matcher matchGsm = mRequestGsmAuthPattern.matcher(requestName); in handleRequests()1325 Matcher matchUmts = mRequestUmtsAuthPattern.matcher(requestName); in handleRequests()1343 Log.e(TAG, "couldn't parse SIM auth request - " + requestName); in handleRequests()