Lines Matching defs:config
53 * This returns a carrier config bundle appropriate for the given network by reading data from
56 * them. All the matching bundles are flattened to return one carrier config bundle.
60 Log.d(TAG, "Config being fetched");
67 PersistableBundle config = null;
78 config = readConfigFromXml(parser, id);
82 // We can return an empty config for unknown networks.
83 config = new PersistableBundle();
86 // Treat vendor.xml as if it were appended to the carrier config file we read.
90 config.putAll(vendorConfig);
96 return config;
122 * @return a possibly empty PersistableBundle containing the config values.
126 PersistableBundle config = new PersistableBundle();
129 return config;
142 config.putAll(configFragment);
146 return config;