Searched defs:settings (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsHelper.java17 package com.android.providers.settings;
186 * Informs the audio service of changes to the settings so that
H A DDatabaseHelper.java17 package com.android.providers.settings;
61 private static final String DATABASE_NAME = "settings.db";
66 // settings.
140 // Load inital settings values
146 Log.w(TAG, "Upgrading settings database from version " + oldVersion + " to "
228 // This introduces the new secure settings table.
553 * New settings for MountService
613 * New settings for new user interface noises.
638 /* Move the lockscreen related settings to Secure, including some private ones. */
655 // new vibration/silent mode settings
[all...]
H A DSettingsBackupAgent.java17 package com.android.providers.settings;
49 * Performs backup and restore of the System and Secure settings.
50 * List of settings that are backed up are stored in the Settings.java file
239 byte[] settings = new byte[data.getDataSize()];
241 data.readEntityData(settings, 0, settings.length);
247 while (pos < settings.length) {
248 int length = readInt(settings, pos);
250 String settingName = length > 0? new String(settings, pos, length) : null;
252 length = readInt(settings, po
[all...]
H A DSettingsProvider.java17 package com.android.providers.settings;
60 // Cache for settings, access-ordered for acting as LRU.
72 // Over this size we don't reject loading or saving settings but
212 String.format("Permission denial: writing to secure settings requires %1$s",
277 new Thread("populate-settings-caches") {
314 Log.d(TAG, "cache for settings table '" + table + "' rows=" + rows + "; fullycached=" +
392 Log.w(TAG, "settings lookup error", e);
727 * In-memory LRU Cache of system and secure settings, along with
805 Log.w(TAG, "null name populating settings cache.");
838 * For suppressing duplicate/redundant settings insert
[all...]
/frameworks/base/tools/localize/
H A Dlocalize_test.cpp122 map<string,Settings> settings; local
125 err = read_settings("testdata/config.xml", &settings, "//asdf");
131 for (it=settings.begin(); it!=settings.end(); it++) {
153 for (it=settings.begin(); it!=settings.end(); it++) {
H A Dlocalize.cpp41 Settings settings; local
42 settings.id = configNode->GetAttribute("", "id", "");
43 if (settings.id == "") {
49 settings.oldVersion = configNode->GetAttribute("", "old-cl", "");
51 settings.currentVersion = configNode->GetAttribute("", "new-cl", "");
52 if (settings.currentVersion == "") {
72 settings.apps.push_back(dir);
104 settings.reject.push_back(reject);
107 (*result)[settings.id] = settings;
127 contains_reject(const Settings& settings, const string& file, const TransUnit& tu) argument
177 const Settings* settings = reinterpret_cast<const Settings*>(cookie); local
194 validate_config(const string& settingsFile, const map<string,Settings>& settings, const string& config) argument
206 validate_configs(const string& settingsFile, const map<string,Settings>& settings, const vector<string>& configs) argument
218 select_files(vector<string> *resFiles, const string& config, const map<string,Settings>& settings, const string& rootDir) argument
233 select_files(vector<vector<string> > *allResFiles, const vector<string>& configs, const map<string,Settings>& settings, const string& rootDir) argument
273 map<string,Settings> settings; local
445 pseudolocalize_string(const string& source, const PseudolocalizeSettings* settings) argument
451 pseudolocalize_xml_node(const XMLNode* source, const PseudolocalizeSettings* settings) argument
480 const PseudolocalizeSettings* settings = (PseudolocalizeSettings*)cookie; local
495 PseudolocalizeSettings settings; local
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DBassBoost.java231 public Settings(String settings) { argument
232 StringTokenizer st = new StringTokenizer(settings, "=;");
235 throw new IllegalArgumentException("settings: " + settings);
240 "invalid settings for BassBoost: " + key);
266 * bass boost settings must be saved by the application.
274 Settings settings = new Settings();
277 settings.strength = value[0];
278 return settings;
282 * Sets the bass boost properties. This method is useful when bass boost settings hav
289 setProperties(BassBoost.Settings settings) argument
[all...]
H A DPresetReverb.java249 public Settings(String settings) { argument
250 StringTokenizer st = new StringTokenizer(settings, "=;");
253 throw new IllegalArgumentException("settings: " + settings);
258 "invalid settings for PresetReverb: " + key);
284 * preset reverb settings must be saved by the application.
292 Settings settings = new Settings();
295 settings.preset = value[0];
296 return settings;
300 * Sets the preset reverb properties. This method is useful when preset reverb settings hav
307 setProperties(PresetReverb.Settings settings) argument
[all...]
H A DVirtualizer.java232 public Settings(String settings) { argument
233 StringTokenizer st = new StringTokenizer(settings, "=;");
236 throw new IllegalArgumentException("settings: " + settings);
241 "invalid settings for Virtualizer: " + key);
267 * virtualizer settings must be saved by the application.
275 Settings settings = new Settings();
278 settings.strength = value[0];
279 return settings;
283 * Sets the virtualizer properties. This method is useful when virtualizer settings hav
290 setProperties(Virtualizer.Settings settings) argument
[all...]
H A DEqualizer.java466 public Settings(String settings) { argument
467 StringTokenizer st = new StringTokenizer(settings, "=;");
470 throw new IllegalArgumentException("settings: " + settings);
475 "invalid settings for Equalizer: " + key);
489 throw new IllegalArgumentException("settings: " + settings);
522 * equalizer settings must be saved by the application.
532 Settings settings = new Settings();
533 settings
550 setProperties(Equalizer.Settings settings) argument
[all...]
H A DEnvironmentalReverb.java529 public Settings(String settings) { argument
530 StringTokenizer st = new StringTokenizer(settings, "=;");
533 throw new IllegalArgumentException("settings: " + settings);
538 "invalid settings for EnvironmentalReverb: " + key);
621 * reverb settings must be saved by the application.
631 Settings settings = new Settings();
632 settings.roomLevel = byteArrayToShort(param, 0);
633 settings.roomHFLevel = byteArrayToShort(param, 2);
634 settings
653 setProperties(EnvironmentalReverb.Settings settings) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DCommandParams.java80 ToneSettings settings; field in class:PlayToneParams
86 this.settings = new ToneSettings(duration, tone, vibrate);
/frameworks/base/core/java/android/webkit/
H A DFrameLoader.java53 FrameLoader(LoadListener listener, WebSettings settings, argument
59 mSettings = settings;
136 WebSettings settings) {
176 settings.getAllowFileAccess()).load();
182 settings.getAllowFileAccess())).sendToTarget();
185 } else if (settings.getAllowContentAccess() &&
135 handleLocalFile(String url, LoadListener loadListener, WebSettings settings) argument
H A DBrowserFrame.java181 * @param settings A WebSettings object that holds all settings.
185 WebSettings settings, Map<String, Object> javascriptInterfaces) {
219 mSettings = settings;
184 BrowserFrame(Context context, WebViewCore w, CallbackProxy proxy, WebSettings settings, Map<String, Object> javascriptInterfaces) argument
/frameworks/base/media/libstagefright/matroska/
H A Dmkvparser.hpp216 Settings settings; member in struct:mkvparser::Track::Info

Completed in 599 milliseconds