• Home
  • Raw
  • Download

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()
172 PersistableBundle capabilityBundle = regTechBundle.getPersistableBundle( in getProvisioningStatusFromSubIdBundle()
184 int capability, PersistableBundle subIdBundle, int newStatus) { in setProvisioningStatusToSubIdBundle()
188 PersistableBundle regTechBundle = subIdBundle.getPersistableBundle( in setProvisioningStatusToSubIdBundle()
191 regTechBundle = new PersistableBundle(); in setProvisioningStatusToSubIdBundle()
195 PersistableBundle capabilityBundle = regTechBundle.getPersistableBundle( in setProvisioningStatusToSubIdBundle()
198 capabilityBundle = new PersistableBundle(); in setProvisioningStatusToSubIdBundle()
206 private int getIntValueFromBundle(int subId, int tech, String key, PersistableBundle bundle) { in getIntValueFromBundle()
214 private PersistableBundle readSubIdBundleFromXml(int subId) { in readSubIdBundleFromXml()
217 PersistableBundle subIdBundles = new PersistableBundle(); in readSubIdBundleFromXml()
224 subIdBundles = PersistableBundle.readFromStream(inFile); in readSubIdBundleFromXml()
238 private void saveSubIdBundleToXml(int subId, PersistableBundle subIdBundle) { in saveSubIdBundleToXml()
295 void setProvisioningToXml(int subId, PersistableBundle subIdBundle, in setProvisioningToXml()