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

/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DCommandParams.java80 ToneSettings settings; field in class:PlayToneParams
86 this.settings = new ToneSettings(duration, tone, vibrate);
/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.java232 public Settings(String settings) { argument
233 StringTokenizer st = new StringTokenizer(settings, "=;");
236 throw new IllegalArgumentException("settings: " + settings);
241 "invalid settings for BassBoost: " + key);
267 * bass boost settings must be saved by the application.
275 Settings settings = new Settings();
278 settings.strength = value[0];
279 return settings;
283 * Sets the bass boost properties. This method is useful when bass boost settings hav
290 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.java234 public Settings(String settings) { argument
235 StringTokenizer st = new StringTokenizer(settings, "=;");
238 throw new IllegalArgumentException("settings: " + settings);
243 "invalid settings for Virtualizer: " + key);
269 * virtualizer settings must be saved by the application.
277 Settings settings = new Settings();
280 settings.strength = value[0];
281 return settings;
285 * Sets the virtualizer properties. This method is useful when virtualizer settings hav
292 setProperties(Virtualizer.Settings settings) argument
[all...]
H A DEqualizer.java467 public Settings(String settings) { argument
468 StringTokenizer st = new StringTokenizer(settings, "=;");
471 throw new IllegalArgumentException("settings: " + settings);
476 "invalid settings for Equalizer: " + key);
490 throw new IllegalArgumentException("settings: " + settings);
523 * equalizer settings must be saved by the application.
533 Settings settings = new Settings();
534 settings
551 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/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 DSettingsBackupAgent.java17 package com.android.providers.settings;
53 * Performs backup and restore of the System and Secure settings.
54 * List of settings that are backed up are stored in the Settings.java file
196 // representation of the backed-up settings.
207 if (DEBUG_BACKUP) Log.d(TAG, systemSettingsData.length + " bytes of settings data");
210 if (DEBUG_BACKUP) Log.d(TAG, secureSettingsData.length + " bytes of secure settings data");
237 // Our data is actually a blob of flattened settings data identical to that
246 // system settings data first
248 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of settings data");
253 // secure settings
381 restoreSettings(byte[] settings, int bytes, Uri contentUri) argument
451 extractRelevantValues(Cursor cursor, String[] settings) argument
[all...]
H A DDatabaseHelper.java17 package com.android.providers.settings;
60 private static final String DATABASE_NAME = "settings.db";
65 // settings.
139 // Load inital settings values
145 Log.w(TAG, "Upgrading settings database from version " + oldVersion + " to "
227 // This introduces the new secure settings table.
541 * New settings for MountService
601 * New settings for new user interface noises.
626 /* Move the lockscreen related settings to Secure, including some private ones. */
643 // new vibration/silent mode settings
[all...]
H A DSettingsProvider.java17 package com.android.providers.settings;
57 // Cache for settings, access-ordered for acting as LRU.
69 // Over this size we don't reject loading or saving settings but
209 String.format("Permission denial: writing to secure settings requires %1$s",
271 new Thread("populate-settings-caches") {
308 Log.d(TAG, "cache for settings table '" + table + "' rows=" + rows + "; fullycached=" +
386 Log.w(TAG, "settings lookup error", e);
721 * In-memory LRU Cache of system and secure settings, along with
795 Log.w(TAG, "null name populating settings cache.");
828 * For suppressing duplicate/redundant settings insert
[all...]
/frameworks/base/core/java/android/webkit/
H A DFrameLoader.java58 FrameLoader(LoadListener listener, WebSettings settings, argument
66 mSettings = settings;
155 WebSettings settings) {
197 settings.getAllowFileAccess()).load();
203 settings.getAllowFileAccess())).sendToTarget();
206 } else if (settings.getAllowContentAccess() &&
154 handleLocalFile(String url, LoadListener loadListener, WebSettings settings) argument
H A DBrowserFrame.java199 * @param settings A WebSettings object that holds all settings.
203 WebSettings settings, Map<String, Object> javascriptInterfaces) {
241 mSettings = settings;
202 BrowserFrame(Context context, WebViewCore w, CallbackProxy proxy, WebSettings settings, Map<String, Object> javascriptInterfaces) argument
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsService.java245 NetworkStatsSettings settings) {
251 mSettings = checkNotNull(settings, "missing NetworkStatsSettings");
1687 * Default external settings that read from {@link Settings.Secure}.
243 NetworkStatsService(Context context, INetworkManagementService networkManager, IAlarmManager alarmManager, TrustedTime time, File systemDir, NetworkStatsSettings settings) argument
/frameworks/media/libvideoeditor/vss/src/
H A DM4xVSS_internal.c2619 * @note It takes its parameters from the BGM settings in the xVSS internal context
2642 * Allocate audio mixing settings structure and fill it with BGM parameters */
2705 * Fill audio mix settings with BGM parameters */
2723 * Save audio mixing settings pointer to be able to free it in
2779 * Free VSS audio mixing settings */
2808 * Free clip/transition settings */
2856 * Free "local" BGM settings */
2869 * Free current edit settings structure */
2910 * Free clip/transition settings */
2976 * Free "local" BGM settings */
4611 M4xVSS_internal_SlideTransitionSettings* settings = local
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp158 jobject settings);
207 jobject settings,
264 jobject settings);
1567 jobject settings,
1595 // Validate the settings parameter.
1597 (NULL == settings),
1598 "settings is null");
1639 "settings already loaded");
1641 // Retrieve the edit settings.
1647 settings,
1564 videoEditor_populateSettings( JNIEnv* pEnv, jobject thiz, jobject settings, jobject object, jobject audioSettingObject) argument
2931 videoEditor_generateClip( JNIEnv* pEnv, jobject thiz, jobject settings) argument
2976 videoEditor_loadSettings( JNIEnv* pEnv, jobject thiz, jobject settings) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7378 // StrictMode settings turned up high. Without batching,
14739 public void onCoreSettingsChange(Bundle settings) { argument
14744 processRecord.thread.setCoreSettings(settings);

Completed in 7739 milliseconds