Searched refs:settings (Results 101 - 125 of 204) sorted by relevance

123456789

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWificondControlTest.java1127 public boolean matches(SingleScanSettings settings) { argument
1128 if (settings.scanType != mExpectedScanType) {
1131 ArrayList<ChannelSettings> channelSettings = settings.channelSettings;
1132 ArrayList<HiddenNetwork> hiddenNetworks = settings.hiddenNetworks;
1180 public boolean matches(PnoSettings settings) { argument
1184 if (settings.intervalMs != mExpectedPnoSettings.periodInMs
1185 || settings.min2gRssi != mExpectedPnoSettings.min24GHzRssi
1186 || settings.min5gRssi != mExpectedPnoSettings.min5GHzRssi) {
1189 if (settings.pnoNetworks == null || mExpectedPnoSettings.networkList == null) {
1192 if (settings
[all...]
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java176 public InputMethodAndSubtypeList(Context context, InputMethodSettings settings) { argument
178 mSettings = settings;
558 private InputMethodSubtypeSwitchingController(InputMethodSettings settings, Context context) { argument
559 mSettings = settings;
564 InputMethodSettings settings, Context context) {
565 return new InputMethodSubtypeSwitchingController(settings, context);
563 createInstanceLocked( InputMethodSettings settings, Context context) argument
/frameworks/base/core/java/android/service/autofill/
H A DUserData.java404 private static int getInt(String settings, int defaultValue) { argument
412 Log.w(TAG, "Could not read from " + settings + "; hardcoding " + defaultValue);
415 return Settings.Secure.getInt(cr, settings, defaultValue);
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodecList.cpp272 const sp<AMessage> settings = mcl->getGlobalSettings(); local
273 if (settings == NULL) {
274 jniThrowException(env, "java/lang/RuntimeException", "cannot get global settings");
279 if (ConvertMessageToMap(env, settings, &settingsObj)) {
/frameworks/base/core/java/android/service/settings/suggestions/
H A DSuggestion.java17 package android.service.settings.suggestions;
/frameworks/base/core/tests/coretests/src/android/service/settings/suggestions/
H A DSuggestionTest.java17 package android.service.settings.suggestions;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
H A DSuggestionControllerMixin.java25 import android.service.settings.suggestions.Suggestion;
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DCurrentUserTracker.java17 package com.android.systemui.settings;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeviceProvisionedControllerImpl.java26 import com.android.systemui.settings.CurrentUserTracker;
H A DKeyguardMonitorImpl.java24 import com.android.systemui.settings.CurrentUserTracker;
/frameworks/base/core/java/android/view/textclassifier/
H A DSystemTextClassifier.java53 public SystemTextClassifier(Context context, TextClassificationConstants settings) argument
57 mSettings = Preconditions.checkNotNull(settings);
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DPluginFragment.java195 holder.findViewById(R.id.settings).setVisibility(mHasSettings ? View.VISIBLE
199 holder.findViewById(R.id.settings).setOnClickListener(v -> {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DChannelHelper.java48 * Return true if the specified channel is expected for a scan with the given settings
50 public abstract boolean settingsContainChannel(WifiScanner.ScanSettings settings, int channel); argument
59 * Estimates the duration that the chip will spend scanning with the given settings
61 public abstract int estimateScanDuration(WifiScanner.ScanSettings settings); argument
183 * Retrieves a list of missing channels in the collection from the provided settings.
200 * Retrieves a list of containing channels in the collection from the provided settings.
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
H A DWificondPnoScannerTest.java158 WifiNative.ScanSettings settings = new NativeScanSettingsBuilder()
167 return settings;
/frameworks/support/app-toolkit/
H A Dsettings.gradle27 settings.include(name)
38 // If you change this file, you should also change the settings gradle inside
/frameworks/support/car/src/main/java/androidx/car/moderator/
H A DSpeedBumpController.java24 import android.car.settings.CarConfigurationManager;
25 import android.car.settings.SpeedBumpConfiguration;
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
H A DPipManager.java248 String[] settings = mContext.getResources().getStringArray(
251 if (settings != null) {
252 for (int i = 0; i < settings.length; i++) {
255 settings[i].split(SETTINGS_PACKAGE_AND_CLASS_DELIMITER);
271 Log.w(TAG, "Ignoring malformed settings name " + settings[i]);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java17 package com.android.providers.settings;
37 import android.providers.settings.GlobalSettingsProto;
38 import android.providers.settings.SettingsOperationProto;
73 * This class contains the state for one type of settings. It is responsible
77 * This class uses the same lock as the settings provider to ensure that
78 * multiple changes made by the settings provider, e,g, upgrade, bulk insert,
101 private static final String TAG_SETTINGS = "settings";
251 // It is important that we use the same lock as the settings provider
257 mStatePersistTag = "settings-" + getTypeFromKey(key) + "-" + getUserIdFromKey(key);
276 // The settings provide
[all...]
H A DGenerationRegistry.java17 package com.android.providers.settings;
H A DSettingsProvider.java17 package com.android.providers.settings;
82 import com.android.providers.settings.SettingsState.Setting;
110 * This class is a content provider that publishes the system settings.
113 * the platform settings.
116 * There are three settings types, global (with signature level protection
119 * protection and per user). Global settings are stored under the device owner.
120 * Each of these settings is represented by a {@link
121 * com.android.providers.settings.SettingsState} object mapped to an integer
128 * Apps targeting APIs Lollipop MR1 and lower can add custom settings entries
130 * system settings ar
3841 ensureLegacyDefaultValueAndSystemSetUpdatedLocked(SettingsState settings, int userId) argument
[all...]
/frameworks/base/core/proto/android/os/
H A Dincident.proto31 import "frameworks/base/core/proto/android/providers/settings.proto";
197 optional android.providers.settings.SettingsServiceDumpProto settings = 3002 [
199 (section).args = "settings --proto"
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DInstallNonMarketAppsDeprecationTest.java17 package com.android.providers.settings;
76 StringBuilder sb = new StringBuilder("settings get --user ");
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbHostManager.java246 public void setCurrentUserSettings(UsbProfileGroupSettingsManager settings) { argument
248 mCurrentSettings = settings;
446 public ParcelFileDescriptor openDevice(String deviceAddress, UsbUserSettingsManager settings, argument
459 settings.checkPermission(device, packageName, uid);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java214 * ConnectivityService notifies NetworkMonitor of settings changes to
312 NetworkMonitorSettings settings) {
323 mSettings = settings;
343 mCaptivePortalHttpUrl = makeURL(getCaptivePortalServerHttpUrl(settings, context));
465 // Reset Private DNS settings state.
893 NetworkMonitorSettings settings, Context context) {
894 return settings.getSetting(
929 // Probe specs only used if configured in settings
310 NetworkMonitor(Context context, Handler handler, NetworkAgentInfo networkAgentInfo, NetworkRequest defaultRequest, IpConnectivityLog logger, NetworkMonitorSettings settings) argument
892 getCaptivePortalServerHttpUrl( NetworkMonitorSettings settings, Context context) argument
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp2518 // Request thread needs to know to avoid using repeat-last-settings protocol
3839 if (request->settings != nullptr) {
3840 size_t settingsSize = get_camera_metadata_size(request->settings);
3842 reinterpret_cast<const uint8_t*>(request->settings), settingsSize)) {
3843 captureRequest->settings.resize(0);
3849 captureRequest->settings.setToExternal(
3850 reinterpret_cast<uint8_t*>(const_cast<camera_metadata_t*>(request->settings)),
3851 get_camera_metadata_size(request->settings));
3855 // A null request settings maps to a size-0 CameraMetadata
3856 captureRequest->settings
4529 updateSessionParameters(const CameraMetadata& settings) argument
[all...]

Completed in 4951 milliseconds

123456789