Searched refs:KEY_BOOLEAN_RESULT (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/accounts/
H A DAccountManager.java183 public static final String KEY_BOOLEAN_RESULT = "booleanResult"; field in class:AccountManager
409 if (!bundle.containsKey(KEY_BOOLEAN_RESULT)) {
412 return bundle.getBoolean(KEY_BOOLEAN_RESULT);
521 if (!bundle.containsKey(KEY_BOOLEAN_RESULT)) {
524 return bundle.getBoolean(KEY_BOOLEAN_RESULT);
977 * <li> {@link #KEY_BOOLEAN_RESULT} - true to indicate success
H A DAccountManagerService.java499 newResult.putBoolean(AccountManager.KEY_BOOLEAN_RESULT,
500 result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false));
548 if (result != null && result.containsKey(AccountManager.KEY_BOOLEAN_RESULT)
550 final boolean removalAllowed = result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT);
557 result2.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, removalAllowed);
1130 if (result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false)) {
H A DAbstractAccountAuthenticator.java399 * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the check succeeded, false otherwise
469 * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the account has all the features,
488 * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the removal of the account is
499 result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, true);
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DAccountUnlockScreen.java290 final boolean verified = result.getBoolean(AccountManager.KEY_BOOLEAN_RESULT);

Completed in 114 milliseconds