Searched defs:mInterfaceName (Results 1 - 7 of 7) sorted by path

/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java76 private final String mInterfaceName; field in class:RegisteredServicesCache
117 mInterfaceName = interfaceName;
337 new Intent(mInterfaceName), PackageManager.GET_META_DATA, userId);
442 Log.d(TAG, "generateServicesMap(" + mInterfaceName + "): " +
445 Log.d(TAG, "generateServicesMap(" + mInterfaceName + "): " +
/frameworks/base/core/java/android/net/
H A DDhcpStateMachine.java80 private final String mInterfaceName; field in class:DhcpStateMachine
117 mInterfaceName = intf;
191 Log.e(TAG, "Error! Failed to handle a DHCP renewal on " + mInterfaceName);
281 if (!NetworkUtils.stopDhcp(mInterfaceName)) {
282 Log.e(TAG, "Failed to stop Dhcp on " + mInterfaceName);
322 if (!NetworkUtils.stopDhcp(mInterfaceName)) {
323 Log.e(TAG, "Failed to stop Dhcp on " + mInterfaceName);
355 NetworkUtils.stopDhcp(mInterfaceName);
356 if (DBG) Log.d(TAG, "DHCP request on " + mInterfaceName);
357 success = NetworkUtils.runDhcp(mInterfaceName, dhcpResult
[all...]
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java77 private final String mInterfaceName; field in class:NetlinkTracker
86 mInterfaceName = iface;
89 mLinkProperties.setInterfaceName(mInterfaceName);
108 if (mInterfaceName.equals(iface)) {
122 if (mInterfaceName.equals(iface)) {
136 if (mInterfaceName.equals(route.getInterface())) {
150 if (mInterfaceName.equals(route.getInterface())) {
164 if (mInterfaceName.equals(iface)) {
189 mLinkProperties.setInterfaceName(mInterfaceName);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiMonitor.java485 private final String mInterfaceName; field in class:WifiMonitor
506 mInterfaceName = wifiNative.mInterfaceName;
511 WifiMonitorSingleton.sInstance.registerInterfaceMonitor(mInterfaceName, this);
528 WifiMonitorSingleton.sInstance.startMonitoring(mInterfaceName);
532 WifiMonitorSingleton.sInstance.stopMonitoring(mInterfaceName);
H A DWifiNative.java63 public final String mInterfaceName; field in class:WifiNative
107 mInterfaceName = interfaceName;
140 mLocalLog.log(mInterfaceName + ": " + s);
H A DWifiServiceImpl.java114 private String mInterfaceName; field in class:WifiServiceImpl
303 mInterfaceName = SystemProperties.get("wifi.interface", "wlan0");
305 mTrafficPoller = new WifiTrafficPoller(mContext, mInterfaceName);
306 mWifiStateMachine = new WifiStateMachine(mContext, mInterfaceName, mTrafficPoller);
H A DWifiStateMachine.java206 private String mInterfaceName; field in class:WifiStateMachine
877 mInterfaceName = wlanInterface;
888 mWifiNative = new WifiNative(mInterfaceName);
906 mNetlinkTracker = new NetlinkTracker(mInterfaceName, new NetlinkTracker.Callback() {
1728 long mTxPkts = TrafficStats.getTxPackets(mInterfaceName);
1729 long mRxPkts = TrafficStats.getRxPackets(mInterfaceName);
3954 newLp.setInterfaceName(mInterfaceName);
3972 for (RouteInfo route : mDhcpResults.getRoutes(mInterfaceName)) {
4075 if (!clearIPv4Address(mInterfaceName)) {
4306 mNwService.clearInterfaceAddresses(mInterfaceName);
[all...]

Completed in 185 milliseconds