script-astra/Android/Sdk/sources/android-35/android/apex/ApexInfo.java

94 lines
4.7 KiB
Java
Raw Normal View History

2025-01-20 15:15:20 +00:00
/*
* This file is auto-generated. DO NOT MODIFY.
* Using: out/host/linux-x86/bin/aidl --lang=java -Weverything -Wno-missing-permission-annotation --min_sdk_version 28 --ninja -d out/soong/.intermediates/system/apex/apexd/apex_aidl_interface-java-source/gen/android/apex/ApexInfo.java.d -o out/soong/.intermediates/system/apex/apexd/apex_aidl_interface-java-source/gen -Nsystem/apex/apexd/aidl system/apex/apexd/aidl/android/apex/ApexInfo.aidl
*/
package android.apex;
public class ApexInfo implements android.os.Parcelable
{
public java.lang.String moduleName;
public java.lang.String modulePath;
public java.lang.String preinstalledModulePath;
public long versionCode = 0L;
public java.lang.String versionName;
public boolean isFactory = false;
public boolean isActive = false;
// Populated only for getStagedApex() API
public boolean hasClassPathJars = false;
// Will be set to true if during this boot a different APEX package of the APEX was
// activated, than in the previous boot.
// This can happen in the following situations:
// 1. It was part of the staged session that was applied during this boot.
// 2. A compressed system APEX was decompressed during this boot.
// 3. apexd failed to activate an APEX on /data/apex/active (that was successfully
// activated during last boot) and needed to fallback to pre-installed counterpart.
// Note: this field can only be set to true during boot, after boot is completed
// (sys.boot_completed = 1) value of this field will always be false.
public boolean activeApexChanged = false;
public static final android.os.Parcelable.Creator<ApexInfo> CREATOR = new android.os.Parcelable.Creator<ApexInfo>() {
@Override
public ApexInfo createFromParcel(android.os.Parcel _aidl_source) {
ApexInfo _aidl_out = new ApexInfo();
_aidl_out.readFromParcel(_aidl_source);
return _aidl_out;
}
@Override
public ApexInfo[] newArray(int _aidl_size) {
return new ApexInfo[_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.writeString(moduleName);
_aidl_parcel.writeString(modulePath);
_aidl_parcel.writeString(preinstalledModulePath);
_aidl_parcel.writeLong(versionCode);
_aidl_parcel.writeString(versionName);
_aidl_parcel.writeInt(((isFactory)?(1):(0)));
_aidl_parcel.writeInt(((isActive)?(1):(0)));
_aidl_parcel.writeInt(((hasClassPathJars)?(1):(0)));
_aidl_parcel.writeInt(((activeApexChanged)?(1):(0)));
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;
moduleName = _aidl_parcel.readString();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
modulePath = _aidl_parcel.readString();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
preinstalledModulePath = _aidl_parcel.readString();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
versionCode = _aidl_parcel.readLong();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
versionName = _aidl_parcel.readString();
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
isFactory = (0!=_aidl_parcel.readInt());
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
isActive = (0!=_aidl_parcel.readInt());
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
hasClassPathJars = (0!=_aidl_parcel.readInt());
if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
activeApexChanged = (0!=_aidl_parcel.readInt());
} 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;
return _mask;
}
}