/packages/apps/Email/emailcommon/src/com/android/emailcommon/ |
TrafficFlags.java | 21 import com.android.emailcommon.provider.Account; 30 // Bits 0->15, account id 50 * Get flags indicating sync of the passed-in account; note that, by default, these flags 55 * @param account the account being used 56 * @return flags for syncing this account 58 public static int getSyncFlags(Context context, Account account) { 59 return (int)account.mId | REASON_SYNC; 63 * Get flags indicating attachment loading from the passed-in account [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/ |
AppleStoreAccountTypeBox.java | 19 return "iTunes Account"; 21 return "AOL Account"; 23 return "unknown Account";
|
/external/openssh/contrib/aix/ |
pam.conf | 10 # Account Management 11 sshd account required /usr/lib/security/pam_aix 12 OTHER account required /usr/lib/security/pam_aix
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
AccountReconciler.java | 39 import com.android.emailcommon.provider.Account; 54 * @return A list of all {@link android.accounts.Account}s created by our app. 56 private static List<android.accounts.Account> getAllAmAccounts(final Context context) { 66 final ImmutableList.Builder<android.accounts.Account> builder = ImmutableList.builder(); 68 final android.accounts.Account[] accounts = am.getAccountsByType(type); 75 * Get a all {@link Account} objects from the {@link EmailProvider}. 77 * @return A list of all {@link Account}s from the {@link EmailProvider}. 79 private static List<Account> getAllEmailProviderAccounts(final Context context) { 80 final Cursor c = context.getContentResolver().query(Account.CONTENT_URI, 81 Account.CONTENT_PROJECTION, null, null, null) 89 final Account account = new Account(); local [all...] |
/art/test/433-gvn/ |
info.txt | 2 used to not take into account all side effects between
|
/cts/hostsidetests/devicepolicy/app/AccountCheck/Tester/ |
README.txt | 4 Note: AccountCheckHostSideTest should pass even with a pre-existing ALLOWED account. Meaning, even 5 after you followed the below steps to add an ALLOWED account, AccountCheckHostSideTest should 15 - Add an account with DEVICE_OR_PROFILE_OWNER_ALLOWED. 17 --esa features android.account.DEVICE_OR_PROFILE_OWNER_ALLOWED \ 20 - Add an account with DEVICE_OR_PROFILE_OWNER_DISALLOWED. 22 --esa features android.account.DEVICE_OR_PROFILE_OWNER_DISALLOWED \ 26 $ dumpsys-account 29 Account {name=8894956487610:android.account.DEVICE_OR_PROFILE_OWNER_ALLOWED, type=com.android.cts.devicepolicy.authcheck.tester}
|
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/ |
GetAuthTokenTx.java | 3 import android.accounts.Account; 24 public final Account account; field in class:GetAuthTokenTx 30 account = in.readParcelable(null); 37 Account account, 41 this.account = account; 54 out.writeParcelable(account, flags);
|
HasFeaturesTx.java | 3 import android.accounts.Account; 27 public final Account account; field in class:HasFeaturesTx 32 account = in.readParcelable(null); 38 Account account, 41 this.account = account; 57 out.writeParcelable(account, flags);
|
UpdateCredentialsTx.java | 3 import android.accounts.Account; 24 public final Account account; field in class:UpdateCredentialsTx 30 account = in.readParcelable(null); 37 Account account, 41 this.account = account; 54 out.writeParcelable(account, flags);
|
/development/apps/PushApiAuthenticator/src/com/example/android/pushapiauthenticator/ |
MyAccountAuthenticator.java | 20 import android.accounts.Account; 42 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, 47 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, 60 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, 65 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
|
/external/openssh/contrib/ |
sshd.pam.freebsd | 2 sshd account required pam_unix.so
|
sshd.pam.generic | 3 account required /lib/security/pam_nologin.so 4 account required /lib/security/pam_unix.so
|
/external/selinux/policycoreutils/newrole/ |
newrole-lspp.pamd | 3 account include system-auth
|
/packages/apps/Email/provider_src/com/android/email/ |
NotificationController.java | 21 import com.android.emailcommon.provider.Account; 30 void cancelNotifications(final Context context, final Account account); 32 void showSecurityNeededNotification(Account account); 33 void showSecurityUnsupportedNotification(Account account); 34 void showSecurityChangedNotification(Account account);
|
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/accounts/ |
AccountStateChangedListener.java | 24 * Handles changes to account used to sign in to the keyboard. 25 * e.g. account switching/sign-in/sign-out from the keyboard 31 * Called when the current account being used in keyboard is signed out. 33 * @param oldAccount the account that was signed out of. 40 * This may be called when the user switches accounts to sign in with a different account. 42 * @param oldAccount the previous account that was being used for sign-in. 44 * @param newAccount the account being used for sign-in. 52 * @param account the account being used for sync. 55 public static void onSyncPreferenceChanged(@Nullable String account, boolean syncEnabled) [all...] |
/cts/hostsidetests/content/test-apps/SyncAccountAccessStubs/src/com/android/cts/stub/ |
StubAuthenticator.java | 20 import android.accounts.Account; 62 accountManager.addAccountExplicitly(new Account("foo", accountType), "bar", null); 74 Account account, Bundle bundle) throws NetworkErrorException { 80 Account account, String type, Bundle bundle) throws NetworkErrorException { 94 Account account, String tokenType, Bundle bundle) 101 Account account, String[] options) throws NetworkErrorException [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
AccountObserver.java | 27 * A simple extension of {@link DataSetObserver} to provide the updated account in 28 * {@link #onChanged(Account)} when the account changes. Initializing the object registers with 30 * receive {@link #onChanged(Account)} till {@link #unregisterAndDestroy()} is called. 32 * To implement an {@link AccountObserver}, you need to implement the {@link #onChanged(Account)} 52 * {@link #onChanged(Account)} when the controller changes the account. 56 public Account initialize(AccountController controller) { 74 * Callback invoked when the account object is changed. Since {@link Account} objects ar [all...] |
/frameworks/base/core/java/android/content/ |
ISyncAdapter.aidl | 19 import android.accounts.Account; 29 * Initiate a sync for this account. SyncAdapter-specific parameters may 35 * @param account the account that should be synced 39 in Account account, in Bundle extras); 49 * Initialize the SyncAdapter for this account and authority. 51 * @param account the account that should be synced 54 void initialize(in Account account, String authority) [all...] |
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
AccountAuthenticator.java | 20 import android.accounts.Account; 35 public static final Account TEST_ACCOUNT = new Account(ACCOUNT_NAME, ACCOUNT_TYPE); 83 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, 89 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, 98 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, 109 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account [all...] |
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
AccountInfo.java | 16 package com.android.contacts.model.account; 30 * Holds an {@link AccountWithDataSet} and the corresponding {@link AccountType} for an account. 51 * Returns the displayable account name label for the account 58 * Returns the displayable account type label for the account 65 * Returns the icon for the account type 92 * Returns whether accounts contains an account that is the same as account 94 * <p>This does not use equality rather checks whether the source account ({@link #getAccount() [all...] |
/external/openssh/contrib/redhat/ |
sshd.pam | 3 account required pam_nologin.so 4 account required pam_stack.so service=system-auth
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAccountManager.java | 3 import android.accounts.Account; 37 private Account[] accounts; 38 private HashMap<Account, HashMap<String, String>> cachedAuthTokenValues = 39 new HashMap<Account, HashMap<String, String>>(); 50 public AccountManagerFuture<Bundle> getAuthToken(Account account, String authTokenType, Bundle options, Activity activity, AccountManagerCallback<Bundle> callback, Handler handler) { 51 //TODO: Add complete activity to perform the account intent dance. 52 final Account finalAccount = account; 99 private void addBundleResults(Bundle bundle, final Account account) [all...] |
ShadowAccount.java | 3 import android.accounts.Account; 15 @Implements(Account.class) 18 private Account realObject; 31 return "Account {name=" + realObject.name + ", type=" + realObject.type + "}"; 40 public static final Creator<Account> CREATOR = 41 new Creator<Account>() { 43 public Account createFromParcel(Parcel source) { 44 return new Account(source); 48 public Account[] newArray(int size) { 49 return new Account[size] [all...] |
/cts/tests/tests/provider/src/android/provider/cts/contacts/account/ |
StaticAccountAuthenticator.java | 17 package android.provider.cts.contacts.account; 20 import android.accounts.Account; 28 * Account authenticator with for CTS. 34 public static final Account ACCOUNT_1 = new Account("cp account 1", TYPE); 68 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, 76 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, [all...] |
/cts/hostsidetests/devicepolicy/app/AccountCheck/Tester/src/com/android/cts/devicepolicy/accountcheck/tester/ |
TestAuthenticator.java | 19 import android.accounts.Account; 63 private static Account createAccount(Context context, String accountType, 72 Log.i(TAG, "Adding account '" + name + "' for " + accountType 75 final Account account = new Account(name, accountType); local 77 account, "password", new Bundle()); 78 return account; 102 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, [all...] |