Home
last modified time | relevance | path

Searched refs:mPropertyService (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java46 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/
DWifiP2pNativeInterfaceManagementTest.java63 @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/
DWifiInjector.java116 private final PropertyService mPropertyService = new SystemPropertyService(); field in WifiInjector
217 new SupplicantStaIfaceHal(mContext, mWifiMonitor, mPropertyService, in WifiInjector()
227 mWifiMonitor, mNwManagementService, mPropertyService, mWifiMetrics, in WifiInjector()
233 mPropertyService); in WifiInjector()
476 return mPropertyService; in getPropertyService()
DWifiNative.java81 private final PropertyService mPropertyService; field in WifiNative
99 mPropertyService = propertyService; in WifiNative()
744 return mPropertyService.getString("wifi.interface", "wlan0"); in handleIfaceCreationWhenVendorHalNotSupported()
DSupplicantStaIfaceHal.java141 private final PropertyService mPropertyService; field in SupplicantStaIfaceHal
190 mPropertyService = propertyService; in SupplicantStaIfaceHal()
630 mPropertyService.set(INIT_START_PROPERTY, INIT_SERVICE_NAME); in startDaemon()
672 mPropertyService.set(INIT_STOP_PROPERTY, INIT_SERVICE_NAME); in terminate()
DClientModeImpl.java213 private final PropertyService mPropertyService; field in ClientModeImpl
792 mPropertyService = wifiInjector.getPropertyService(); in ClientModeImpl()
1143 mPropertyService.set(SYSTEM_PROPERTY_LOG_CONTROL_WIFIHAL, in configureVerboseHalLogging()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java171 @Mock private PropertyService mPropertyService; field in WifiNativeTest
186 mWifiMonitor, mNwService, mPropertyService, mWifiMetrics, mHandler, mRandom); in setUp()
DSupplicantStaIfaceHalTest.java128 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()
DClientModeImplTest.java359 @Mock PropertyService mPropertyService; field in ClientModeImplTest
418 when(mWifiInjector.getPropertyService()).thenReturn(mPropertyService); in setUp()
1811 reset(mPropertyService); // Ignore calls made in setUp() in enablingVerboseLoggingSetsHalLogPropertyInEngBuilds()
1816 verify(mPropertyService).set("log.tag.WifiHAL", "V"); in enablingVerboseLoggingSetsHalLogPropertyInEngBuilds()
1822 reset(mPropertyService); // Ignore calls made in setUp() in enablingVerboseLoggingSetsHalLogPropertyInUserdebugBuilds()
1827 verify(mPropertyService).set("log.tag.WifiHAL", "V"); in enablingVerboseLoggingSetsHalLogPropertyInUserdebugBuilds()
1833 reset(mPropertyService); // Ignore calls made in setUp() in enablingVerboseLoggingDoeNotSetHalLogPropertyInUserBuilds()
1838 verify(mPropertyService, never()).set(anyString(), anyString()); in enablingVerboseLoggingDoeNotSetHalLogPropertyInUserBuilds()
1845 reset(mPropertyService); // Ignore calls made in setUp() in testGetSupportedFeaturesCase()
DWifiNativeInterfaceManagementTest.java80 @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()