Lines Matching refs:Settings
17 package com.android.settings;
29 import android.provider.Settings;
64 boolean userSetInstLocation = (Settings.System.getInt(getContentResolver(),
65 Settings.Secure.SET_INSTALL_LOCATION, 0) != 0);
88 Settings.System.putInt(getContentResolver(),
89 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_DEVICE);
91 Settings.System.putInt(getContentResolver(),
92 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_SDCARD);
94 Settings.System.putInt(getContentResolver(),
95 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_AUTO);
98 Settings.System.putInt(getContentResolver(),
99 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_AUTO);
135 Settings.Secure.putInt(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS,
140 return Settings.Secure.getInt(getContentResolver(),
141 Settings.Secure.INSTALL_NON_MARKET_APPS, 0) > 0;
145 int selectedLocation = Settings.System.getInt(getContentResolver(),
146 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_AUTO);