Home | History | Annotate | Download | only in provider

Lines Matching refs:ACCOUNT

19 import android.accounts.Account;
73 * person and associated with a single account (for example, one of the user's
147 * A query parameter specifing a primary account. This parameter should be used with
151 * For example, in an email composition screen, its implementation can specify an account when
152 * obtaining possible recipients, letting the provider know which account is selected during
153 * the composition. The provider may use the "primary account" information to optimize
159 * A query parameter specifing a primary account. This parameter should be used with
420 * (for instance when the user adds a new Directory account), the directory provider
426 * A directory row can be optionally associated with an existing account
427 * (see {@link android.accounts.AccountManager}). If the account is later removed,
510 * The account type which this directory is associated.
517 * The account with which this directory is associated. If the account is later
539 * allow its data copied only to the account specified by
546 * allow its data copied to any contacts account.
653 public static byte[] get(ContentProviderClient provider, Account account)
655 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
661 public static Pair<Uri, byte[]> getWithUri(ContentProviderClient provider, Account account)
663 return SyncStateContract.Helpers.getWithUri(provider, CONTENT_URI, account);
669 public static void set(ContentProviderClient provider, Account account, byte[] data)
671 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
677 public static ContentProviderOperation newSetOperation(Account account, byte[] data) {
678 return SyncStateContract.Helpers.newSetOperation(CONTENT_URI, account, data);
707 public static byte[] get(ContentProviderClient provider, Account account)
709 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
715 public static Pair<Uri, byte[]> getWithUri(ContentProviderClient provider, Account account)
717 return SyncStateContract.Helpers.getWithUri(provider, CONTENT_URI, account);
723 public static void set(ContentProviderClient provider, Account account, byte[] data)
725 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
731 public static ContentProviderOperation newSetOperation(Account account, byte[] data) {
732 return SyncStateContract.Helpers.newSetOperation(CONTENT_URI, account, data);
758 * account, including sync information that an account may need.
765 * The name of the account instance to which this row belongs, which when paired with
766 * {@link #ACCOUNT_TYPE} identifies a specific account.
772 * The type of account to which this row belongs, which when paired with
773 * {@link #ACCOUNT_NAME} identifies a specific account.
779 * String that uniquely identifies this row to its source account.
793 * to be synchronized by its owning account.
1133 * Sort key that takes into account locale-based traditions for sorting
2013 * account (including data set, if applicable) on the device may contribute a single
2124 * The data set within the account that this row belongs to. This allows
2125 * multiple sync adapters for the same account type to distinguish between
2130 * the same account type and account name.
2136 * A concatenation of the account type and data set (delimited by a forward
2137 * slash) - if the data set is empty, this will be the same as the account
2139 * be used instead of account type to distinguish sets of data. This is
2206 * information for each person in each synced account. Sync adapters and
2323 * To find raw contacts within a specific account,
2324 * you can either put the account name and type in the selection or pass them as query
2464 * <td>The name of the account instance to which this row belongs, which when paired with
2465 * {@link #ACCOUNT_TYPE} identifies a specific account.
2466 * For example, this will be the Gmail address if it is a Google account.
2476 * The type of account to which this row belongs, which when paired with
2477 * {@link #ACCOUNT_NAME} identifies a specific account.
2482 * To ensure uniqueness, new account types should be chosen according to the
2483 * Java package naming convention. Thus a Google account is of type "com.google".
2493 * The data set within the account that this row belongs to. This allows
2494 * multiple sync adapters for the same account type to distinguish between
2502 * the same account type and account name.
2514 * <td>String that uniquely identifies this row to its source account.
2517 * will have an account name and type (and possibly a data set), but no
2536 * to be synchronized by its owning account. The value is set to "1" automatically
3053 * <h3>Account check</h3>
3055 * The content URIs to the insert, update and delete operations are required to have the account
3311 * The account type to which the raw_contact of this item is associated. See
3320 * The account name to which the raw_contact of this item is associated. See
3329 * The data set within the account that the raw_contact of this row belongs to. This allows
3330 * multiple sync adapters for the same account type to distinguish between
3427 * <h3>Account check</h3>
3429 * The content URIs to the insert, update and delete operations are required to have the account
3845 * The sync adapter for a given account type must correctly handle every data type
3851 * party's account types. For example, if you add a data row for
3852 * "favorite song" to a raw contact owned by a Google account, it will not
3855 * introduced along with new account types, i.e. new sync adapters.
4756 * The IM account for the local user that the presence data came from.
4832 * <td>The IM account for the local user that the presence data came from.</td>
6841 * The data set within the account that this group belongs to. This allows
6842 * multiple sync adapters for the same account type to distinguish between
6847 * for the same account type and account name.
6853 * A concatenation of the account type and data set (delimited by a forward
6854 * slash) - if the data set is empty, this will be the same as the account
6856 * be used instead of account type to distinguish sets of data. This is
6920 * The total number of groups of the account that a group belongs to.
6925 * For example, when the account "A" has two groups "group1" and "group2", and the account
6968 * is false for this group's account.
7000 * Constants for the groups table. Only per-account groups are supported.
7020 * The data set within the account that this group belongs to. This allows
7021 * multiple sync adapters for the same account type to distinguish between
7029 * the same account type and account name.
7096 * is false for this group's account.</td>
7269 * The name of the account instance to which this row belongs.
7275 * The type of account to which this row belongs, which when paired with
7276 * {@link #ACCOUNT_NAME} identifies a specific account.
7282 * The data set within the account that this row belongs to. This allows
7283 * multiple sync adapters for the same account type to distinguish between
7288 * the same account type and account name.
7311 * {@link Groups#SHOULD_SYNC} under this account have been marked as
7335 * Contacts-specific settings for various {@link Account}'s.
7346 * <td>The name of the account instance to which this row belongs.</td>
7352 * <td>The type of account to which this row belongs, which when paired with
7353 * {@link #ACCOUNT_NAME} identifies a specific account.</td>
7375 * {@link Groups#SHOULD_SYNC} under this account have been marked as
8263 * adjusted to comply with the constraints of the specific account type.
8293 * Used to specify the account in which to create the new contact.
8296 * dialog to chose an account
8298 * Type: {@link Account}
8302 public static final String ACCOUNT = "com.android.contacts.extra.ACCOUNT";
8305 * Used to specify the data set within the account in which to create the
8309 * created in the base account, with no data set.