Home
last modified time | relevance | path

Searched refs:getHotspotIconResource (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/
H A DWifiUtilsTest.java206 WifiUtils.getHotspotIconResource(NetworkProviderInfo.DEVICE_TYPE_UNKNOWN); in getHotspotIconResource_deviceTypeUnknown_shouldNotCrash()
211 assertThat(WifiUtils.getHotspotIconResource(NetworkProviderInfo.DEVICE_TYPE_PHONE)) in getHotspotIconResource_deviceTypeExists_shouldNotNull()
213 assertThat(WifiUtils.getHotspotIconResource(NetworkProviderInfo.DEVICE_TYPE_TABLET)) in getHotspotIconResource_deviceTypeExists_shouldNotNull()
215 assertThat(WifiUtils.getHotspotIconResource(NetworkProviderInfo.DEVICE_TYPE_LAPTOP)) in getHotspotIconResource_deviceTypeExists_shouldNotNull()
217 assertThat(WifiUtils.getHotspotIconResource(NetworkProviderInfo.DEVICE_TYPE_WATCH)) in getHotspotIconResource_deviceTypeExists_shouldNotNull()
219 assertThat(WifiUtils.getHotspotIconResource(NetworkProviderInfo.DEVICE_TYPE_AUTO)) in getHotspotIconResource_deviceTypeExists_shouldNotNull()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DWifiUtils.java339 public static int getHotspotIconResource(int deviceType) { in getHotspotIconResource() method in WifiUtils
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/dialog/
H A DInternetDialogControllerTest.java10 import static com.android.settingslib.wifi.WifiUtils.getHotspotIconResource;
528 mTestableResources.addOverride(getHotspotIconResource(DEVICE_TYPE_PHONE), hotspotDrawable); in getWifiDrawable_withHotspotNetworkEntry_returnHotspotDrawable()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/
H A DInternetDialogController.java21 import static com.android.settingslib.wifi.WifiUtils.getHotspotIconResource;
476 return mContext.getDrawable(getHotspotIconResource(deviceType)); in getWifiDrawable()