/frameworks/base/services/java/com/android/server/usb/ |
UsbDeviceManager.java | 44 import android.provider.Settings; 127 boolean enable = (Settings.Global.getInt(mContentResolver, 128 Settings.Global.ADB_ENABLED, 0) > 0); 175 public void setCurrentSettings(UsbSettingsManager settings) { 177 mCurrentSettings = settings; 202 Settings.Global.putInt(mContentResolver, Settings.Global.ADB_ENABLED, mAdbEnabled ? 1 : 0); 361 // register observer to listen for settings changes 363 Settings.Global.getUriFor(Settings.Global.ADB_ENABLED) [all...] |
/external/chromium_org/tools/gn/ |
toolchain_manager.cc | 26 void SetSystemVars(const Settings& settings, Scope* scope) { 57 settings(build_settings, &toolchain, output_subdir_name), 70 ItemTree& tree = settings.build_settings()->item_tree(); 82 // When the state is TOOLCHAIN_SETTINGS_LOADED, the settings should be 87 Settings settings; member in struct:ToolchainManager::Info 91 // settings file has been interpreted. 121 // name to call the settings for the default build config. So we create one 146 const Settings* ToolchainManager::GetSettingsForToolchainLocked [all...] |
input_conversion.cc | 16 #include "tools/gn/settings.h" 122 Settings settings(&build_settings, &toolchain, std::string()); 123 Scope scope(&settings);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyConnection.java | 104 /** Lazily-created settings for this connection. */ 105 Settings settings; field in class:SpdyConnection 178 stream = new SpdyStream(streamId, this, flags, priority, slot, requestHeaders, settings); 456 settings); 508 @Override public void settings(int flags, Settings newSettings) { method in class:SpdyConnection.Reader 511 if (settings == null || (flags & Settings.FLAG_CLEAR_PREVIOUSLY_PERSISTED_SETTINGS) != 0) { 512 settings = newSettings [all...] |
/frameworks/base/core/java/android/app/ |
ApplicationErrorReport.java | 29 import android.provider.Settings; 161 // check if error reporting is enabled in secure settings 162 int enabled = Settings.Global.getInt(context.getContentResolver(), 163 Settings.Global.SEND_ACTION_APP_ERROR, 0);
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
ConnectivityManagerMobileTest.java | 26 import android.provider.Settings; 55 if (Settings.Global.getInt(getInstrumentation().getContext().getContentResolver(), 56 Settings.Global.AIRPLANE_MODE_ON) == 1) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
StorageNotification.java | 31 import android.provider.Settings; 314 final boolean adbOn = 1 == Settings.Global.getInt( 316 Settings.Global.ADB_ENABLED,
|
/frameworks/base/services/java/com/android/server/print/ |
UserState.java | 52 import android.provider.Settings; 671 readPrintServicesFromSettingLocked(Settings.Secure.ENABLED_PRINT_SERVICES, 683 String settingValue = Settings.Secure.getStringForUser(mContext.getContentResolver(), 709 Settings.Secure.ENABLED_ON_FIRST_BOOT_SYSTEM_PRINT_SERVICES, 739 String enabledServices = Settings.Secure.getStringForUser( 740 mContext.getContentResolver(), Settings.Secure.ENABLED_PRINT_SERVICES, mUserId); 746 Settings.Secure.putStringForUser(mContext.getContentResolver(), 747 Settings.Secure.ENABLED_PRINT_SERVICES, enabledServices, mUserId); 750 String enabledOnFirstBootServices = Settings.Secure.getStringForUser( 752 Settings.Secure.ENABLED_ON_FIRST_BOOT_SYSTEM_PRINT_SERVICES, mUserId) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyboardSwitcher.java | 39 import com.android.inputmethod.latin.settings.Settings; 40 import com.android.inputmethod.latin.settings.SettingsValues; 179 Settings.readKeyPreviewPopupEnabled(mPrefs, mResources), 180 Settings.readKeyPreviewPopupDismissDelay(mPrefs, mResources));
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
PinyinIME.java | 141 * Option dialog to choose settings and other IMEs. 186 Settings.getInstance(PreferenceManager 207 Settings.releaseInstance(); 856 if (Settings.getPrediction()) { [all...] |
/packages/services/Telephony/src/com/android/phone/ |
EmergencyDialer.java | 32 import android.provider.Settings; 486 mDTMFToneEnabled = Settings.System.getInt(getContentResolver(), 487 Settings.System.DTMF_TONE_WHEN_DIALING, 1) == 1;
|
SipCallOptionHandler.java | 42 import android.provider.Settings; 203 if (mCallOption.equals(Settings.System.SIP_ASK_ME_EACH_TIME) 208 if (!mCallOption.equals(Settings.System.SIP_ADDRESS_ONLY) 354 // Redirect to sip settings and drop the call.
|
/development/apps/Development/src/com/android/development/ |
ShowActivity.java | 1 /* //device/apps/Settings/src/com/android/settings/Keyguard.java 26 import android.provider.Settings;
|
/external/chromium_org/cc/output/ |
delegating_renderer.cc | 73 Settings().compositor_name.c_str(),
|
/external/chromium_org/remoting/webapp/ |
wcs_sandbox_content.js | 223 remoting.settings = new remoting.Settings();
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
FontBuilder.cpp | 30 #include "core/page/Settings.h" 70 // All documents need to be in a frame (and thus have access to Settings) 89 ASSERT(m_document && m_document->settings()); 90 if (!m_document || !m_document->settings()) 98 const AtomicString& standardFontFamily = m_document->settings()->standardFontFamily(); 130 // Make sure the rendering mode and printer font settings are updated. 131 const Settings* settings = m_document->settings(); local 132 ASSERT(settings); // If we're doing style resolution, this document should always be in a frame and thus have sett (…) 186 Settings* settings = m_document->settings(); local 502 RefPtr<FontFeatureSettings> settings = FontFeatureSettings::create(); local 611 Settings* settings = m_document->settings(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLAppletElement.cpp | 33 #include "core/page/Settings.h" 185 Settings* settings = document()->settings(); 186 if (!settings) 189 if (!settings->isJavaEnabled())
|
PluginDocument.cpp | 108 Settings* settings = frame->settings(); 109 if (!settings || !frame->loader()->allowPlugins(NotAboutToInstantiatePlugin))
|
/frameworks/base/core/java/android/preference/ |
RingtonePreference.java | 24 import android.provider.Settings.System;
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
RsBench.java | 30 import android.provider.Settings.System;
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiStateMachine.java | 73 import android.provider.Settings; 374 * - DTIM wake up settings 418 /* change the batch scan settings. 421 * obj = bundle with the new settings and the optional worksource 451 * See {@link Settings.Secure#WIFI_MAX_DHCP_RETRY_COUNT}. This is the default 452 * value if a Settings value is not present. 467 /* Tracks if user has enabled suspend optimizations through settings */ 474 * point on the move. {@link Settings.Global#WIFI_FRAMEWORK_SCAN_INTERVAL_MS} can 481 * Comes from {@link Settings.Global#WIFI_SUPPLICANT_SCAN_INTERVAL_MS} or 634 * Track the worksource/cost of the current settings and track what's been note 941 BatchedScanSettings settings = bundle.getParcelable(BATCHED_SETTING); local [all...] |
/packages/apps/Settings/src/com/android/settings/ |
AppPicker.java | 17 package com.android.settings; 25 import com.android.settings.applications.AppViewHolder; 36 import android.provider.Settings;
|
OwnerInfoSettings.java | 17 package com.android.settings; 24 import android.provider.Settings;
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationPositionTracker.java | 22 import com.android.mail.providers.Settings; 219 * Get the next conversation according to the AutoAdvance settings and the list of 223 * {@link Settings#getAutoAdvanceSetting()} value.
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/ |
SetupWizardActivity.java | 27 import android.provider.Settings; 39 import com.android.inputmethod.latin.settings.SettingsActivity; 268 intent.setAction(Settings.ACTION_INPUT_METHOD_SETTINGS); 286 intent.setAction(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS); 288 intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, imi.getId()); 345 // Prevent white screen flashing while launching settings activity.
|