blob: 2a1ab1731b38f2b403413a10835547e2975cfa37 [file] [log] [blame]
/*
* This file is auto-generated. DO NOT MODIFY.
*/
package android.system.keystore2;
/** @hide */
public class KeyEntryResponse implements android.os.Parcelable
{
public android.system.keystore2.IKeystoreSecurityLevel iSecurityLevel;
public android.system.keystore2.KeyMetadata metadata;
@Override
public final int getStability() { return android.os.Parcelable.PARCELABLE_STABILITY_VINTF; }
public static final android.os.Parcelable.Creator<KeyEntryResponse> CREATOR = new android.os.Parcelable.Creator<KeyEntryResponse>() {
@Override
public KeyEntryResponse createFromParcel(android.os.Parcel _aidl_source) {
KeyEntryResponse _aidl_out = new KeyEntryResponse();
_aidl_out.readFromParcel(_aidl_source);
return _aidl_out;
}
@Override
public KeyEntryResponse[] newArray(int _aidl_size) {
return new KeyEntryResponse[_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.writeStrongInterface(iSecurityLevel);
_aidl_parcel.writeTypedObject(metadata, _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;
iSecurityLevel = android.system.keystore2.IKeystoreSecurityLevel.Stub.asInterface(_aidl_parcel.readStrongBinder());
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
metadata = _aidl_parcel.readTypedObject(android.system.keystore2.KeyMetadata.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 int describeContents() {
int _mask = 0;
_mask |= describeContents(metadata);
return _mask;
}
private int describeContents(Object _v) {
if (_v == null) return 0;
if (_v instanceof android.os.Parcelable) {
return ((android.os.Parcelable) _v).describeContents();
}
return 0;
}
}