Home
last modified time | relevance | path

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

/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetConfigStore.java35 private ArrayMap<String, IpConfiguration> mIpConfigurations; field in EthernetConfigStore
40 mIpConfigurations = new ArrayMap<>(0); in EthernetConfigStore()
54 mIpConfigurations = configs; in read()
63 modified = mIpConfigurations.remove(iface) != null; in write()
65 IpConfiguration oldConfig = mIpConfigurations.put(iface, config); in write()
70 mStore.writeIpConfigurations(ipConfigFile, mIpConfigurations); in write()
77 return new ArrayMap<>(mIpConfigurations); in getIpConfigurations()
DEthernetTracker.java85 private final ConcurrentHashMap<String, IpConfiguration> mIpConfigurations = field in EthernetTracker
145 mIpConfigurations.put(configs.keyAt(i), configs.valueAt(i)); in start()
163 mIpConfigurations.put(iface, ipConfiguration); in updateIpConfiguration()
169 return mIpConfigurations.get(iface); in getIpConfiguration()
310 IpConfiguration ipConfiguration = mIpConfigurations.get(iface); in addInterface()
459 mIpConfigurations.put(name, ipConfig); in parseEthernetConfig()
641 for (String iface : mIpConfigurations.keySet()) { in dump()
642 pw.println(iface + ": " + mIpConfigurations.get(iface)); in dump()