Lines Matching refs:account

109      * account, including sync information that an account may need.
114 * The name of the account instance to which this row belongs, which when paired with
115 * {@link #ACCOUNT_TYPE} identifies a specific account.
121 * The type of account to which this row belongs, which when paired with
122 * {@link #ACCOUNT_NAME} identifies a specific account.
128 * String that uniquely identifies this row to its source account.
142 * to be synchronized by its owning account.
307 * Query parameter used to specify an account name
313 * Query parameter used to specify an account type
414 * The name of the account instance to which this row belongs, which when paired with
415 * {@link #ACCOUNT_TYPE} identifies a specific account.
421 * The type of account to which this row belongs, which when paired with
422 * {@link #ACCOUNT_NAME} identifies a specific account.
428 * The ID of the account's root folder. This will be the ID of the folder
524 public static byte[] get(ContentProviderClient provider, Account account)
526 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
532 public static Pair<Uri, byte[]> getWithUri(ContentProviderClient provider, Account account)
534 return SyncStateContract.Helpers.getWithUri(provider, CONTENT_URI, account);
540 public static void set(ContentProviderClient provider, Account account, byte[] data)
542 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
548 public static ContentProviderOperation newSetOperation(Account account, byte[] data) {
549 return SyncStateContract.Helpers.newSetOperation(CONTENT_URI, account, data);