Home | History | Annotate | Download | only in settings

Lines Matching full:boolean

68     private static final boolean LDEBUG = Log.isLoggable(TAG, Log.DEBUG);
104 new AccountManagerCallback<Boolean>() {
105 public void run(AccountManagerFuture<Boolean> future) {
106 boolean failed = true;
203 public boolean onCreateOptionsMenu(Menu menu) {
213 public boolean onPrepareOptionsMenu(Menu menu) {
215 boolean syncActive = ContentResolver.getCurrentSync() != null;
222 public boolean onOptionsItemSelected(MenuItem item) {
235 public boolean onPreferenceTreeClick(PreferenceScreen preferences, Preference preference) {
240 boolean syncAutomatically = ContentResolver.getSyncAutomatically(account, authority);
244 boolean syncOn = syncPref.isChecked();
245 boolean oldSyncState = syncAutomatically;
271 private void requestOrCancelSyncForEnabledProviders(boolean startSync) {
293 private void requestOrCancelSync(Account account, String authority, boolean flag) {
308 boolean syncIsFailing = false;
324 boolean syncEnabled = ContentResolver.getSyncAutomatically(account, authority);
325 boolean authorityIsPending = status == null ? false : status.pending;
326 boolean initialSync = status == null ? false : status.initialize;
328 boolean activelySyncing = currentSync != null
331 boolean lastSyncFailed = status != null
363 final boolean masterSyncAutomatically = ContentResolver.getMasterSyncAutomatically();
364 final boolean backgroundDataEnabled = connManager.getBackgroundDataSetting();
365 final boolean oneTimeSyncMode = !masterSyncAutomatically || !backgroundDataEnabled;