Home
last modified time | relevance | path

Searched refs:requestName (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiMonitor.java1304 String requestName = dataString.substring(REQUEST_PREFIX_LEN_STR); in handleRequests() local
1305 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()