Searched refs:requestName (Results 1 – 1 of 1) sorted by relevance
1304 String requestName = dataString.substring(REQUEST_PREFIX_LEN_STR); in handleRequests() local1305 if (TextUtils.isEmpty(requestName)) { in handleRequests()1308 if (requestName.startsWith(IDENTITY_STR)) { in handleRequests()1309 Matcher match = mRequestIdentityPattern.matcher(requestName); in handleRequests()1318 Log.e(TAG, "didn't find SSID " + requestName); in handleRequests()1321 } else if (requestName.startsWith(SIM_STR)) { in handleRequests()1322 Matcher matchGsm = mRequestGsmAuthPattern.matcher(requestName); in handleRequests()1323 Matcher matchUmts = mRequestUmtsAuthPattern.matcher(requestName); in handleRequests()1341 Log.e(TAG, "couldn't parse SIM auth request - " + requestName); in handleRequests()