Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da640d66 authored by Gabriel Biren's avatar Gabriel Biren
Browse files

Use fixed-size arrays for any arrays added in

V2 that expect a pre-set size.

Bug: 273964536
Test: m
Change-Id: Iab1239484bfc7fd61834118e5a9e1999cab194ad
parent fb8b891a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,6 +38,6 @@ parcelable MloLink {
  byte[] staLinkMacAddress;
  byte tidsUplinkMap;
  byte tidsDownlinkMap;
  @nullable byte[] apLinkMacAddress;
  @nullable byte[6] apLinkMacAddress;
  int frequencyMHz;
}
+1 −1
Original line number Diff line number Diff line
@@ -36,5 +36,5 @@ package android.hardware.wifi.supplicant;
parcelable MloLinksInfo {
  android.hardware.wifi.supplicant.MloLink[] links;
  int apMloLinkId;
  @nullable byte[] apMldMacAddress;
  @nullable byte[6] apMldMacAddress;
}
+2 −2
Original line number Diff line number Diff line
@@ -41,8 +41,8 @@ parcelable P2pGroupStartedEventParams {
  byte[] psk;
  String passphrase;
  boolean isPersistent;
  byte[] goDeviceAddress;
  byte[] goInterfaceAddress;
  byte[6] goDeviceAddress;
  byte[6] goInterfaceAddress;
  boolean isP2pClientEapolIpAddressInfoPresent;
  android.hardware.wifi.supplicant.P2pClientEapolIpAddressInfo p2pClientIpInfo;
}
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
package android.hardware.wifi.supplicant;
@VintfStability
parcelable PmkSaCacheData {
  byte[] bssid;
  byte[6] bssid;
  long expirationTimeInSec;
  byte[] serializedEntry;
}
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ parcelable SupplicantStateChangeData {
  android.hardware.wifi.supplicant.StaIfaceCallbackState newState;
  int id;
  byte[] ssid;
  byte[] bssid;
  byte[6] bssid;
  android.hardware.wifi.supplicant.KeyMgmtMask keyMgmtMask;
  int frequencyMhz;
  boolean filsHlpSent;
Loading