Home | History | Annotate | Download | only in carrierconfig

Lines Matching refs:PersistableBundle

5 import android.os.PersistableBundle;
30 * return the PersistableBundle from that file. Assets are preferred over Resources because resource
54 public PersistableBundle onLoadConfig(CarrierIdentifier id) {
62 PersistableBundle config = null;
78 config = new PersistableBundle();
84 PersistableBundle vendorConfig = readConfigFromXml(vendorInput, id);
95 * Parses an XML document and returns a PersistableBundle.
99 * by {@link PersistableBundle#restoreFromXml}. All the matching bundles will be flattened and
117 * @return a possibly empty PersistableBundle containing the config values.
119 static PersistableBundle readConfigFromXml(XmlPullParser parser, CarrierIdentifier id)
121 PersistableBundle config = new PersistableBundle();
136 PersistableBundle configFragment = PersistableBundle.restoreFromXml(parser);