/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pNative.java | 46 private final PropertyService mPropertyService; field in WifiP2pNative 117 mPropertyService = propertyService; in WifiP2pNative() 193 return mPropertyService.getString(P2P_INTERFACE_PROPERTY, P2P_IFACE_NAME); in createP2pIface() 255 : mPropertyService.getString(P2P_INTERFACE_PROPERTY, P2P_IFACE_NAME); in setupInterface() 273 String ifaceName = mPropertyService.getString(P2P_INTERFACE_PROPERTY, P2P_IFACE_NAME); in teardownInterface()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | WifiP2pNativeInterfaceManagementTest.java | 63 @Mock private PropertyService mPropertyService; field in WifiP2pNativeInterfaceManagementTest 97 when(mPropertyService.getString(P2P_INTERFACE_PROPERTY, P2P_IFACE_NAME)) in setUp() 102 mPropertyService); in setUp()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiInjector.java | 114 private final PropertyService mPropertyService = new SystemPropertyService(); field in WifiInjector 209 new SupplicantStaIfaceHal(mContext, mWifiMonitor, mPropertyService, in WifiInjector() 219 mWifiMonitor, mNwManagementService, mPropertyService, mWifiMetrics, in WifiInjector() 225 mPropertyService); in WifiInjector() 467 return mPropertyService; in getPropertyService()
|
D | WifiNative.java | 80 private final PropertyService mPropertyService; field in WifiNative 98 mPropertyService = propertyService; in WifiNative() 743 return mPropertyService.getString("wifi.interface", "wlan0"); in handleIfaceCreationWhenVendorHalNotSupported()
|
D | SupplicantStaIfaceHal.java | 136 private final PropertyService mPropertyService; field in SupplicantStaIfaceHal 185 mPropertyService = propertyService; in SupplicantStaIfaceHal() 624 mPropertyService.set(INIT_START_PROPERTY, INIT_SERVICE_NAME); in startDaemon() 657 mPropertyService.set(INIT_STOP_PROPERTY, INIT_SERVICE_NAME); in terminate()
|
D | ClientModeImpl.java | 206 private final PropertyService mPropertyService; field in ClientModeImpl 779 mPropertyService = wifiInjector.getPropertyService(); in ClientModeImpl() 1126 mPropertyService.set(SYSTEM_PROPERTY_LOG_CONTROL_WIFIHAL, in configureVerboseHalLogging()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | WifiNativeTest.java | 171 @Mock private PropertyService mPropertyService; field in WifiNativeTest 186 mWifiMonitor, mNwService, mPropertyService, mWifiMetrics, mHandler, mRandom); in setUp()
|
D | SupplicantStaIfaceHalTest.java | 128 private @Mock PropertyService mPropertyService; field in SupplicantStaIfaceHalTest 158 super(mContext, mWifiMonitor, mPropertyService, mLooper.getLooper()); in SupplicantStaIfaceHalSpy() 1688 verify(mPropertyService).set( in testStartDaemonV1_0() 1704 verify(mPropertyService, never()).set(any(), any()); in testStartDaemonV1_1() 1714 verify(mPropertyService).set( in testTerminateV1_0() 1730 verify(mPropertyService, never()).set(any(), any()); in testTerminateV1_1()
|
D | ClientModeImplTest.java | 352 @Mock PropertyService mPropertyService; field in ClientModeImplTest 411 when(mWifiInjector.getPropertyService()).thenReturn(mPropertyService); in setUp() 1691 reset(mPropertyService); // Ignore calls made in setUp() in enablingVerboseLoggingSetsHalLogPropertyInEngBuilds() 1696 verify(mPropertyService).set("log.tag.WifiHAL", "V"); in enablingVerboseLoggingSetsHalLogPropertyInEngBuilds() 1702 reset(mPropertyService); // Ignore calls made in setUp() in enablingVerboseLoggingSetsHalLogPropertyInUserdebugBuilds() 1707 verify(mPropertyService).set("log.tag.WifiHAL", "V"); in enablingVerboseLoggingSetsHalLogPropertyInUserdebugBuilds() 1713 reset(mPropertyService); // Ignore calls made in setUp() in enablingVerboseLoggingDoeNotSetHalLogPropertyInUserBuilds() 1718 verify(mPropertyService, never()).set(anyString(), anyString()); in enablingVerboseLoggingDoeNotSetHalLogPropertyInUserBuilds() 1725 reset(mPropertyService); // Ignore calls made in setUp() in testGetSupportedFeaturesCase()
|
D | WifiNativeInterfaceManagementTest.java | 80 @Mock private PropertyService mPropertyService; field in WifiNativeInterfaceManagementTest 169 mWifiMonitor, mNwManagementService, mPropertyService, mWifiMetrics, in setUp() 1151 when(mPropertyService.getString(any(), any())).thenReturn(IFACE_NAME_0); in testSetupClientAndSoftApInterfaceCausesClientInterfaceTeardownWithNoVendorHal() 1210 when(mPropertyService.getString(any(), any())).thenReturn(IFACE_NAME_0); in testSetupSoftApAndClientInterfaceCausesSoftApInterfaceTeardownWithNoVendorHal()
|