97 lines
4.6 KiB
Java
97 lines
4.6 KiB
Java
![]() |
/*
|
||
|
* This file is auto-generated. DO NOT MODIFY.
|
||
|
* Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 2 --hash 929397e6b7a077545b4266734f3dbf2162fb0558 --stability vintf --min_sdk_version current -pout/soong/.intermediates/system/hardware/interfaces/media/android.media.audio.common.types_interface/3/preprocessed.aidl --ninja -d out/soong/.intermediates/system/hardware/interfaces/media/android.media.soundtrigger.types-V2-java-source/gen/android/media/soundtrigger/PhraseRecognitionEvent.java.d -o out/soong/.intermediates/system/hardware/interfaces/media/android.media.soundtrigger.types-V2-java-source/gen -Nsystem/hardware/interfaces/media/aidl_api/android.media.soundtrigger.types/2 system/hardware/interfaces/media/aidl_api/android.media.soundtrigger.types/2/android/media/soundtrigger/PhraseRecognitionEvent.aidl
|
||
|
*/
|
||
|
package android.media.soundtrigger;
|
||
|
/** @hide */
|
||
|
public class PhraseRecognitionEvent implements android.os.Parcelable
|
||
|
{
|
||
|
public android.media.soundtrigger.RecognitionEvent common;
|
||
|
public android.media.soundtrigger.PhraseRecognitionExtra[] phraseExtras;
|
||
|
@Override
|
||
|
public final int getStability() { return android.os.Parcelable.PARCELABLE_STABILITY_VINTF; }
|
||
|
public static final android.os.Parcelable.Creator<PhraseRecognitionEvent> CREATOR = new android.os.Parcelable.Creator<PhraseRecognitionEvent>() {
|
||
|
@Override
|
||
|
public PhraseRecognitionEvent createFromParcel(android.os.Parcel _aidl_source) {
|
||
|
PhraseRecognitionEvent _aidl_out = new PhraseRecognitionEvent();
|
||
|
_aidl_out.readFromParcel(_aidl_source);
|
||
|
return _aidl_out;
|
||
|
}
|
||
|
@Override
|
||
|
public PhraseRecognitionEvent[] newArray(int _aidl_size) {
|
||
|
return new PhraseRecognitionEvent[_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.writeTypedObject(common, _aidl_flag);
|
||
|
_aidl_parcel.writeTypedArray(phraseExtras, _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;
|
||
|
common = _aidl_parcel.readTypedObject(android.media.soundtrigger.RecognitionEvent.CREATOR);
|
||
|
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
|
||
|
phraseExtras = _aidl_parcel.createTypedArray(android.media.soundtrigger.PhraseRecognitionExtra.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("common: " + (java.util.Objects.toString(common)));
|
||
|
_aidl_sj.add("phraseExtras: " + (java.util.Arrays.toString(phraseExtras)));
|
||
|
return "PhraseRecognitionEvent" + _aidl_sj.toString() ;
|
||
|
}
|
||
|
@Override
|
||
|
public boolean equals(Object other) {
|
||
|
if (this == other) return true;
|
||
|
if (other == null) return false;
|
||
|
if (!(other instanceof PhraseRecognitionEvent)) return false;
|
||
|
PhraseRecognitionEvent that = (PhraseRecognitionEvent)other;
|
||
|
if (!java.util.Objects.deepEquals(common, that.common)) return false;
|
||
|
if (!java.util.Objects.deepEquals(phraseExtras, that.phraseExtras)) return false;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int hashCode() {
|
||
|
return java.util.Arrays.deepHashCode(java.util.Arrays.asList(common, phraseExtras).toArray());
|
||
|
}
|
||
|
@Override
|
||
|
public int describeContents() {
|
||
|
int _mask = 0;
|
||
|
_mask |= describeContents(common);
|
||
|
_mask |= describeContents(phraseExtras);
|
||
|
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;
|
||
|
}
|
||
|
}
|