Searched defs:accountId (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/drm/common/
H A DDrmRights.cpp23 const String8& accountId, const String8& subscriptionId) :
25 mAccountId(accountId),
36 const String8& accountId, const String8& subscriptionId) :
39 mAccountId(accountId),
22 DrmRights(const String8& rightsFilePath, const String8& mimeType, const String8& accountId, const String8& subscriptionId) argument
35 DrmRights(const DrmBuffer& rightsData, const String8& mimeType, const String8& accountId, const String8& subscriptionId) argument
H A DIDrmManagerService.cpp364 const String8 accountId = drmRights.getAccountId(); local
365 data.writeString8((accountId == String8("")) ? String8("NULL") : accountId);
1063 const String8 accountId(data.readString8());
1070 ((accountId == String8("NULL")) ? String8("") : accountId),
/frameworks/base/drm/java/android/drm/
H A DProcessedData.java36 * @param accountId Account ID of the user.
38 /* package */ ProcessedData(byte[] data, String accountId) { argument
40 mAccountId = accountId;
47 * @param accountId Account ID of the user.
50 /* package */ ProcessedData(byte[] data, String accountId, String subscriptionId) { argument
52 mAccountId = accountId;
H A DDrmRights.java62 * @param accountId Account ID of the user.
64 public DrmRights(String rightsFilePath, String mimeType, String accountId) { argument
67 mAccountId = accountId;
75 * @param accountId Account ID of the user.
79 String rightsFilePath, String mimeType, String accountId, String subscriptionId) {
82 mAccountId = accountId;
78 DrmRights( String rightsFilePath, String mimeType, String accountId, String subscriptionId) argument
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java343 final long accountId = cursor.getLong(0);
350 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
552 long accountId = db.insert(TABLE_ACCOUNTS, ACCOUNTS_NAME, values);
553 if (accountId < 0) {
561 if (insertExtraLocked(db, accountId, key, value) < 0) {
578 private long insertExtraLocked(SQLiteDatabase db, long accountId, String key, String value) { argument
581 values.put(EXTRAS_ACCOUNTS_ID, accountId);
819 long accountId = getAccountIdLocked(db, account);
820 if (accountId < 0) {
824 AUTHTOKENS_ACCOUNTS_ID + "=" + accountId
1635 getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) argument
[all...]

Completed in 89 milliseconds