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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DToggleSeekBar.java17 package com.android.systemui.settings;
H A DBrightnessDialog.java17 package com.android.systemui.settings;
H A DCurrentUserTracker.java17 package com.android.systemui.settings;
H A DToggleSlider.java17 package com.android.systemui.settings;
H A DBrightnessController.java17 package com.android.systemui.settings;
261 /** Fetch the brightness mode from the system settings and update the icon */
277 /** Fetch the brightness from the system settings and update the slider */
/frameworks/wilhelm/src/itf/
H A DIAudioEncoder.c31 SLAudioEncoderSettings settings = *pSettings; local
33 thiz->mSettings = settings;
52 SLAudioEncoderSettings settings = thiz->mSettings; local
54 *pSettings = settings;
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java17 package com.android.commands.settings;
32 static final String TAG = "settings";
59 System.err.println("Unable to run settings command");
130 "settings", UserHandle.USER_OWNER, token);
132 throw new IllegalStateException("Could not find settings provider");
154 activityManager.removeContentProviderExternal("settings", token);
158 System.err.println("Error while accessing settings provider");
244 System.err.println("usage: settings [--user NUM] get namespace key");
245 System.err.println(" settings [--user NUM] put namespace key value");
246 System.err.println(" settings [
[all...]
/frameworks/base/media/java/android/media/audiofx/
H A DBassBoost.java225 public Settings(String settings) { argument
226 StringTokenizer st = new StringTokenizer(settings, "=;");
229 throw new IllegalArgumentException("settings: " + settings);
234 "invalid settings for BassBoost: " + key);
260 * bass boost settings must be saved by the application.
268 Settings settings = new Settings();
271 settings.strength = value[0];
272 return settings;
276 * Sets the bass boost properties. This method is useful when bass boost settings hav
283 setProperties(BassBoost.Settings settings) argument
[all...]
H A DLoudnessEnhancer.java226 public Settings(String settings) { argument
227 StringTokenizer st = new StringTokenizer(settings, "=;");
230 throw new IllegalArgumentException("settings: " + settings);
235 "invalid settings for LoudnessEnhancer: " + key);
262 * effect settings must be saved by the application.
270 Settings settings = new Settings();
273 settings.targetGainmB = value[0];
274 return settings;
279 * Sets the LoudnessEnhancer properties. This method is useful when bass boost settings
286 setProperties(LoudnessEnhancer.Settings settings) argument
[all...]
H A DPresetReverb.java241 public Settings(String settings) { argument
242 StringTokenizer st = new StringTokenizer(settings, "=;");
245 throw new IllegalArgumentException("settings: " + settings);
250 "invalid settings for PresetReverb: " + key);
276 * preset reverb settings must be saved by the application.
284 Settings settings = new Settings();
287 settings.preset = value[0];
288 return settings;
292 * Sets the preset reverb properties. This method is useful when preset reverb settings hav
299 setProperties(PresetReverb.Settings settings) argument
[all...]
H A DEqualizer.java460 public Settings(String settings) { argument
461 StringTokenizer st = new StringTokenizer(settings, "=;");
464 throw new IllegalArgumentException("settings: " + settings);
469 "invalid settings for Equalizer: " + key);
483 throw new IllegalArgumentException("settings: " + settings);
516 * equalizer settings must be saved by the application.
526 Settings settings = new Settings();
527 settings
544 setProperties(Equalizer.Settings settings) argument
[all...]
H A DVirtualizer.java566 public Settings(String settings) { argument
567 StringTokenizer st = new StringTokenizer(settings, "=;");
570 throw new IllegalArgumentException("settings: " + settings);
575 "invalid settings for Virtualizer: " + key);
601 * virtualizer settings must be saved by the application.
609 Settings settings = new Settings();
612 settings.strength = value[0];
613 return settings;
617 * Sets the virtualizer properties. This method is useful when virtualizer settings hav
624 setProperties(Virtualizer.Settings settings) argument
[all...]
H A DEnvironmentalReverb.java521 public Settings(String settings) { argument
522 StringTokenizer st = new StringTokenizer(settings, "=;");
525 throw new IllegalArgumentException("settings: " + settings);
530 "invalid settings for EnvironmentalReverb: " + key);
613 * reverb settings must be saved by the application.
623 Settings settings = new Settings();
624 settings.roomLevel = byteArrayToShort(param, 0);
625 settings.roomHFLevel = byteArrayToShort(param, 2);
626 settings
645 setProperties(EnvironmentalReverb.Settings settings) argument
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsHelper.java17 package com.android.providers.settings;
139 // These are the critical accessibility settings that are required for a
140 // blind user to be able to interact with the device. If these settings are
255 * Informs the audio service of changes to the settings so that
H A DSettingsBackupAgent.java17 package com.android.providers.settings;
68 * Performs backup and restore of the System and Secure settings.
69 * List of settings that are backed up are stored in the Settings.java file
525 // representation of the backed-up settings.
536 if (DEBUG_BACKUP) Log.d(TAG, systemSettingsData.length + " bytes of settings data");
539 if (DEBUG_BACKUP) Log.d(TAG, secureSettingsData.length + " bytes of secure settings data");
542 if (DEBUG_BACKUP) Log.d(TAG, globalSettingsData.length + " bytes of global settings data");
569 // Our data is actually a blob of flattened settings data identical to that
583 // system settings data first
585 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of settings dat
733 restoreSettings(byte[] settings, int bytes, Uri contentUri, HashSet<String> movedToGlobal) argument
811 extractRelevantValues(Cursor cursor, String[] settings) argument
[all...]
H A DDatabaseHelper.java17 package com.android.providers.settings;
68 private static final String DATABASE_NAME = "settings.db";
73 // settings.
189 // Load inital settings values
195 Log.w(TAG, "Upgrading settings database from version " + oldVersion + " to "
277 // This introduces the new secure settings table.
591 * New settings for MountService
651 * New settings for new user interface noises.
676 /* Move the lockscreen related settings to Secure, including some private ones. */
693 // new vibration/silent mode settings
[all...]
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeAdvertiser.java84 * @param settings Settings for Bluetooth LE advertising.
88 public void startAdvertising(AdvertiseSettings settings, argument
90 startAdvertising(settings, advertiseData, null, callback);
101 * @param settings Settings for Bluetooth LE advertising.
106 public void startAdvertising(AdvertiseSettings settings, argument
120 boolean isConnectable = settings.isConnectable();
140 scanResponse, settings, gatt);
248 AdvertiseSettings settings,
253 mSettings = settings;
329 AdvertiseSettings settings) {
246 AdvertiseCallbackWrapper(AdvertiseCallback advertiseCallback, AdvertiseData advertiseData, AdvertiseData scanResponse, AdvertiseSettings settings, IBluetoothGatt bluetoothGatt) argument
328 onMultiAdvertiseCallback(int status, boolean isStart, AdvertiseSettings settings) argument
366 postStartSuccess(final AdvertiseCallback callback, final AdvertiseSettings settings) argument
[all...]
H A DBluetoothLeScanner.java96 * @param settings Settings for the scan.
98 * @throws IllegalArgumentException If {@code settings} or {@code callback} is null.
100 public void startScan(List<ScanFilter> filters, ScanSettings settings, argument
102 startScan(filters, settings, callback, null);
105 private void startScan(List<ScanFilter> filters, ScanSettings settings, argument
108 if (settings == null || callback == null) {
109 throw new IllegalArgumentException("settings or callback is null");
126 if (!isSettingsConfigAllowedForScan(settings)) {
132 settings, callback, resultStorages);
184 public void startTruncatedScan(List<TruncatedFilter> truncatedFilters, ScanSettings settings, argument
223 BleScanCallbackWrapper(IBluetoothGatt bluetoothGatt, List<ScanFilter> filters, ScanSettings settings, ScanCallback scanCallback, List<List<ResultStorageDescriptor>> resultStorages) argument
385 isSettingsConfigAllowedForScan(ScanSettings settings) argument
[all...]
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbHostManager.java75 public void setCurrentSettings(UsbSettingsManager settings) { argument
77 mCurrentSettings = settings;
/frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
H A DCamera2UtilsTest.java153 private <T> void requestSettingsSetAndAssertChanged(Camera2RequestSettingsSet settings, argument
156 long revision = settings.getRevision();
157 assertEquals(shouldHaveChanged, settings.set(key, value));
158 assertEquals(shouldHaveChanged ? revision + 1 : revision, settings.getRevision());
184 private <T> void requestSettingsUnsetAndAssertChanged(Camera2RequestSettingsSet settings, argument
186 long revision = settings.getRevision();
187 assertEquals(shouldHaveChanged, settings.unset(key));
188 assertEquals(shouldHaveChanged ? revision + 1 : revision, settings.getRevision());
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java168 public InputMethodAndSubtypeList(Context context, InputMethodSettings settings) { argument
170 mSettings = settings;
481 private InputMethodSubtypeSwitchingController(InputMethodSettings settings, Context context) { argument
482 mSettings = settings;
487 InputMethodSettings settings, Context context) {
488 return new InputMethodSubtypeSwitchingController(settings, context);
486 createInstanceLocked( InputMethodSettings settings, Context context) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerNotificationWarnings.java81 private final Intent mOpenBatterySettings = settings(Intent.ACTION_POWER_USAGE_SUMMARY);
82 private final Intent mOpenSaverSettings = settings(Settings.ACTION_BATTERY_SAVER_SETTINGS);
249 private static Intent settings(String action) { method in class:PowerNotificationWarnings
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java36 * <p>An immutable package of settings and outputs needed to capture a single
186 * Take ownership of passed-in settings.
190 private CaptureRequest(CameraMetadataNative settings) { argument
191 mSettings = CameraMetadataNative.move(settings);
448 * Build a request using the current target Surfaces and settings.
716 * and will not change exposure settings until the lock is set to <code>false</code> (OFF).</p>
728 * <p>Since the camera device has a pipeline of in-flight requests, the settings that
729 * get locked do not necessarily correspond to the settings that were present in the
738 * <li>Copy exposure settings from that result into a request, set the request to manual AE</li>
869 * included at all in the request settings
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java212 TextServicesSettings settings) {
218 settings.getCurrentUserId());
409 // Spell checker language settings == "auto"
1001 // TSMS settings are kept per user, so keep track of current user
210 buildSpellCheckerMapLocked(Context context, ArrayList<SpellCheckerInfo> list, HashMap<String, SpellCheckerInfo> map, TextServicesSettings settings) argument
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java160 ComponentName settings; // setting to launch to modify agent. field in class:TrustManagerService.AgentInfo
258 agentInfo.settings = getSettingsComponentName(pm, resolveInfo);

Completed in 3450 milliseconds

12