Merge "Update GlobalCellId during Un-parceling" into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
6f918dbf7c
@@ -279,6 +279,7 @@ public final class CellIdentityCdma extends CellIdentity {
|
||||
mLongitude = in.readInt();
|
||||
mLatitude = in.readInt();
|
||||
|
||||
updateGlobalCellId();
|
||||
if (DBG) log(toString());
|
||||
}
|
||||
|
||||
|
||||
@@ -323,6 +323,7 @@ public final class CellIdentityGsm extends CellIdentity {
|
||||
mBsic = in.readInt();
|
||||
mAdditionalPlmns = (ArraySet<String>) in.readArraySet(null);
|
||||
|
||||
updateGlobalCellId();
|
||||
if (DBG) log(toString());
|
||||
}
|
||||
|
||||
|
||||
@@ -403,6 +403,8 @@ public final class CellIdentityLte extends CellIdentity {
|
||||
mBandwidth = in.readInt();
|
||||
mAdditionalPlmns = (ArraySet<String>) in.readArraySet(null);
|
||||
mCsgInfo = in.readParcelable(null);
|
||||
|
||||
updateGlobalCellId();
|
||||
if (DBG) log(toString());
|
||||
}
|
||||
|
||||
|
||||
@@ -273,6 +273,8 @@ public final class CellIdentityNr extends CellIdentity {
|
||||
mBands = in.createIntArray();
|
||||
mNci = in.readLong();
|
||||
mAdditionalPlmns = (ArraySet<String>) in.readArraySet(null);
|
||||
|
||||
updateGlobalCellId();
|
||||
}
|
||||
|
||||
/** Implement the Parcelable interface */
|
||||
|
||||
@@ -321,6 +321,8 @@ public final class CellIdentityTdscdma extends CellIdentity {
|
||||
mUarfcn = in.readInt();
|
||||
mAdditionalPlmns = (ArraySet<String>) in.readArraySet(null);
|
||||
mCsgInfo = in.readParcelable(null);
|
||||
|
||||
updateGlobalCellId();
|
||||
if (DBG) log(toString());
|
||||
}
|
||||
|
||||
|
||||
@@ -336,6 +336,8 @@ public final class CellIdentityWcdma extends CellIdentity {
|
||||
mUarfcn = in.readInt();
|
||||
mAdditionalPlmns = (ArraySet<String>) in.readArraySet(null);
|
||||
mCsgInfo = in.readParcelable(null);
|
||||
|
||||
updateGlobalCellId();
|
||||
if (DBG) log(toString());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user