Searched defs:mTypeLists (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java542 * on mTypeLists to be thread-safe with respect to a concurrent remove call.
545 private final ArrayList<NetworkAgentInfo> mTypeLists[]; field in class:ConnectivityService.LegacyTypeTracker
548 mTypeLists = (ArrayList<NetworkAgentInfo>[])
553 if (mTypeLists[type] != null) {
557 mTypeLists[type] = new ArrayList<NetworkAgentInfo>();
561 return isNetworkTypeValid(type) && mTypeLists[type] != null;
565 synchronized (mTypeLists) {
566 if (isTypeSupported(type) && !mTypeLists[type].isEmpty()) {
567 return mTypeLists[type].get(0);
589 ArrayList<NetworkAgentInfo> list = mTypeLists[typ
[all...]

Completed in 35 milliseconds