Lines Matching refs:PersistableBundle
21 import android.os.PersistableBundle;
59 private SparseArray<PersistableBundle> mSubIdBundleArray = new SparseArray<>();
96 PersistableBundle subIdBundle = mSubIdBundleArray.get(subId, null); in initCache()
110 subIdBundle = new PersistableBundle(); in initCache()
128 PersistableBundle subIdBundle = null; in getImsProvisioningStatus()
148 PersistableBundle subIdBundle = mSubIdBundleArray.get(subId, null); in setImsFeatureProvisioning()
157 int capability, PersistableBundle subIdBundle) { in getProvisioningStatusFromSubIdBundle()
164 PersistableBundle regTechBundle = subIdBundle.getPersistableBundle( in getProvisioningStatusFromSubIdBundle()
171 PersistableBundle capabilityBundle = regTechBundle.getPersistableBundle( in getProvisioningStatusFromSubIdBundle()
182 int capability, PersistableBundle subIdBundle, int newStatus) { in setProvisioningStatusToSubIdBundle()
186 PersistableBundle regTechBundle = subIdBundle.getPersistableBundle( in setProvisioningStatusToSubIdBundle()
189 regTechBundle = new PersistableBundle(); in setProvisioningStatusToSubIdBundle()
193 PersistableBundle capabilityBundle = regTechBundle.getPersistableBundle( in setProvisioningStatusToSubIdBundle()
196 capabilityBundle = new PersistableBundle(); in setProvisioningStatusToSubIdBundle()
204 private int getIntValueFromBundle(String key, PersistableBundle bundle) { in getIntValueFromBundle()
211 private PersistableBundle readSubIdBundleFromXml(int subId) { in readSubIdBundleFromXml()
214 PersistableBundle subIdBundles = new PersistableBundle(); in readSubIdBundleFromXml()
221 subIdBundles = PersistableBundle.readFromStream(inFile); in readSubIdBundleFromXml()
235 private void saveSubIdBundleToXml(int subId, PersistableBundle subIdBundle) { in saveSubIdBundleToXml()
292 void setProvisioningToXml(int subId, PersistableBundle subIdBundle, in setProvisioningToXml()