script-astra/Android/Sdk/sources/android-35/android/hardware/radio/data/UrspRule.java
localadmin 4380f00a78 init
2025-01-20 18:15:20 +03:00

87 lines
4.2 KiB
Java

/*
* This file is auto-generated. DO NOT MODIFY.
* Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 3 --hash cd8913a3f9d39f1cc0a5fcf9e90257be94ec38df --stability vintf --min_sdk_version current -pout/soong/.intermediates/hardware/interfaces/radio/aidl/android.hardware.radio_interface/3/preprocessed.aidl --ninja -d out/soong/.intermediates/hardware/interfaces/radio/aidl/android.hardware.radio.data-V3-java-source/gen/android/hardware/radio/data/UrspRule.java.d -o out/soong/.intermediates/hardware/interfaces/radio/aidl/android.hardware.radio.data-V3-java-source/gen -Nhardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.data/3 hardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.data/3/android/hardware/radio/data/UrspRule.aidl
*/
package android.hardware.radio.data;
/** @hide */
public class UrspRule implements android.os.Parcelable
{
public int precedence = 0;
public android.hardware.radio.data.TrafficDescriptor[] trafficDescriptors;
public android.hardware.radio.data.RouteSelectionDescriptor[] routeSelectionDescriptor;
@Override
public final int getStability() { return android.os.Parcelable.PARCELABLE_STABILITY_VINTF; }
public static final android.os.Parcelable.Creator<UrspRule> CREATOR = new android.os.Parcelable.Creator<UrspRule>() {
@Override
public UrspRule createFromParcel(android.os.Parcel _aidl_source) {
UrspRule _aidl_out = new UrspRule();
_aidl_out.readFromParcel(_aidl_source);
return _aidl_out;
}
@Override
public UrspRule[] newArray(int _aidl_size) {
return new UrspRule[_aidl_size];
}
};
@Override public final void writeToParcel(android.os.Parcel _aidl_parcel, int _aidl_flag)
{
int _aidl_start_pos = _aidl_parcel.dataPosition();
_aidl_parcel.writeInt(0);
_aidl_parcel.writeInt(precedence);
_aidl_parcel.writeTypedArray(trafficDescriptors, _aidl_flag);
_aidl_parcel.writeTypedArray(routeSelectionDescriptor, _aidl_flag);
int _aidl_end_pos = _aidl_parcel.dataPosition();
_aidl_parcel.setDataPosition(_aidl_start_pos);
_aidl_parcel.writeInt(_aidl_end_pos - _aidl_start_pos);
_aidl_parcel.setDataPosition(_aidl_end_pos);
}
public final void readFromParcel(android.os.Parcel _aidl_parcel)
{
int _aidl_start_pos = _aidl_parcel.dataPosition();
int _aidl_parcelable_size = _aidl_parcel.readInt();
try {
if (_aidl_parcelable_size < 4) throw new android.os.BadParcelableException("Parcelable too small");;
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
precedence = _aidl_parcel.readInt();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
trafficDescriptors = _aidl_parcel.createTypedArray(android.hardware.radio.data.TrafficDescriptor.CREATOR);
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
routeSelectionDescriptor = _aidl_parcel.createTypedArray(android.hardware.radio.data.RouteSelectionDescriptor.CREATOR);
} finally {
if (_aidl_start_pos > (Integer.MAX_VALUE - _aidl_parcelable_size)) {
throw new android.os.BadParcelableException("Overflow in the size of parcelable");
}
_aidl_parcel.setDataPosition(_aidl_start_pos + _aidl_parcelable_size);
}
}
@Override
public String toString() {
java.util.StringJoiner _aidl_sj = new java.util.StringJoiner(", ", "{", "}");
_aidl_sj.add("precedence: " + (precedence));
_aidl_sj.add("trafficDescriptors: " + (java.util.Arrays.toString(trafficDescriptors)));
_aidl_sj.add("routeSelectionDescriptor: " + (java.util.Arrays.toString(routeSelectionDescriptor)));
return "UrspRule" + _aidl_sj.toString() ;
}
@Override
public int describeContents() {
int _mask = 0;
_mask |= describeContents(trafficDescriptors);
_mask |= describeContents(routeSelectionDescriptor);
return _mask;
}
private int describeContents(Object _v) {
if (_v == null) return 0;
if (_v instanceof Object[]) {
int _mask = 0;
for (Object o : (Object[]) _v) {
_mask |= describeContents(o);
}
return _mask;
}
if (_v instanceof android.os.Parcelable) {
return ((android.os.Parcelable) _v).describeContents();
}
return 0;
}
}