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

/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNat464Xlat.java69 // - Running: start() called, and interfaceLinkStateChanged() told us that mIface is up.
72 // Once mIface is non-null and isStarted() is true, methods called by ConnectivityService on
76 private String mIface; field in class:Nat464Xlat
107 return mIface != null;
114 mIface = null;
145 mIface = CLAT_PREFIX + mBaseIface;
190 !mNetwork.linkProperties.getAllInterfaceNames().contains(mIface)) {
191 Slog.d(TAG, "clatd running, updating NAI for " + mIface);
193 if (mIface.equals(stacked.getInterfaceName())) {
203 stacked.setInterfaceName(mIface);
[all...]
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetNetworkFactory.java100 private static String mIface = ""; field in class:EthernetNetworkFactory
148 if (!mIface.equals(iface)) {
204 Log.e(TAG, "Interface unexpectedly changed from " + iface + " to " + mIface);
209 Log.e(TAG, "Error upping interface " + mIface + ": " + e);
225 if (!iface.equals(mIface))
248 Log.i(TAG, "Applying static IPv4 configuration to " + mIface + ": " + staticConfig);
249 InterfaceConfiguration config = mNMService.getInterfaceConfig(mIface);
251 mNMService.setInterfaceConfig(mIface, config);
291 mIface, mNetworkInfo));
303 linkProperties = config.getStaticIpConfiguration().toLinkProperties(mIface);
[all...]
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpClient.java186 private NetworkInterface mIface; field in class:DhcpClient
265 mIface = NetworkInterface.getByName(mIfaceName);
266 mHwAddr = mIface.getHardwareAddress();
267 mInterfaceBroadcastAddr = new PacketSocketAddress(mIface.getIndex(),
288 PacketSocketAddress addr = new PacketSocketAddress((short) ETH_P_IP, mIface.getIndex());

Completed in 193 milliseconds