Home
last modified time | relevance | path

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

/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
DIconCache.java276 public void notifyIconReceived(long bssid, String fileName, byte[] iconData) { in notifyIconReceived() argument
278 fileName, iconData != null ? iconData.length : -1, bssid)); in notifyIconReceived()
287 bssid, fileName, iconData != null ? iconData.length : -1)); in notifyIconReceived()
293 if (iconData != null) { in notifyIconReceived()
296 ByteBuffer.wrap(iconData).order(ByteOrder.LITTLE_ENDIAN)); in notifyIconReceived()
305 bssid, fileName, iconData != null ? iconData.length : -1)); in notifyIconReceived()
DSPVerifier.java153 HSIconFileElement iconData = osuInfo.getIconFileElement(); in verify() local
156 iconData.getIconData().length != mFileSize) { in verify()
162 byte[] computed = digest.digest(iconData.getIconData()); in verify()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DSupplicantBridge.java131 byte[] iconData = new byte[iconEvent.getSize()]; in retrieveIcon()
151 if (fragment.length + offset > iconData.length) { in retrieveIcon()
154 System.arraycopy(fragment, 0, iconData, offset, fragment.length); in retrieveIcon()
172 return iconData; in retrieveIcon()
/frameworks/base/packages/Osu/src/com/android/
DMainActivity.java403 byte[] iconData = osuData.getIconFileElement().getIconData(); in getView()
406 BitmapFactory.decodeByteArray(iconData, 0, iconData.length))); in getView()