/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 | 116 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()
|
D | WifiNative.java | 81 private final PropertyService mPropertyService; field in WifiNative 99 mPropertyService = propertyService; in WifiNative() 744 return mPropertyService.getString("wifi.interface", "wlan0"); in handleIfaceCreationWhenVendorHalNotSupported()
|
D | SupplicantStaIfaceHal.java | 141 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()
|
D | ClientModeImpl.java | 213 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/ |
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 | 359 @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()
|
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()
|