Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DNat464Xlat.java76 private String mIface; field in Nat464Xlat
145 mIface = CLAT_PREFIX + baseIface; in enterStartingState()
181 mIface = null; in enterIdleState()
235 if (lp == null || lp.getAllInterfaceNames().contains(mIface)) { in fixupLinkProperties()
239 Slog.d(TAG, "clatd running, updating NAI for " + mIface); in fixupLinkProperties()
241 if (Objects.equals(mIface, stacked.getInterfaceName())) { in fixupLinkProperties()
250 stacked.setInterfaceName(mIface); in makeLinkProperties()
260 clatAddress.getAddress(), mIface); in makeLinkProperties()
280 if (!isStarting() || !up || !Objects.equals(mIface, iface)) { in handleInterfaceLinkStateChanged()
291 mIface, mIface, mBaseIface)); in handleInterfaceLinkStateChanged()
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceCallbackTest.java55 private String mIface = "test_p2p0"; field in SupplicantP2pIfaceCallbackTest
78 mDut = new SupplicantP2pIfaceCallbackSpy(mIface, mMonitor); in setUp()
97 assertEquals(iface, mIface); in testOnDeviceFound_success()
198 assertEquals(iface, mIface); in testOnDeviceLost_success()
240 assertEquals(iface, mIface); in testOnGoNegotiationRequest_success()
303 assertEquals(iface, mIface); in testOnGroupStarted_success()
/frameworks/base/services/net/java/android/net/dhcp/
DDhcpClient.java190 private InterfaceParams mIface; field in DhcpClient
269 client.mIface = ifParams; in makeDhcpClient()
275 if (mIface == null) mIface = InterfaceParams.getByName(mIfaceName); in initInterface()
276 if (mIface == null) { in initInterface()
281 mHwAddr = mIface.macAddr.toByteArray(); in initInterface()
282 mInterfaceBroadcastAddr = new PacketSocketAddress(mIface.index, DhcpPacket.ETHER_BROADCAST); in initInterface()
298 PacketSocketAddress addr = new PacketSocketAddress((short) ETH_P_IP, mIface.index); in initPacketSocket()