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.cpp357 const String8 accountId = drmRights.getAccountId(); local
358 data.writeString8((accountId == String8("")) ? String8("NULL") : accountId);
1060 const String8 accountId(data.readString8());
1067 ((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.java63 * @param accountId Account ID of the user.
65 public DrmRights(String rightsFilePath, String mimeType, String accountId) { argument
68 mAccountId = accountId;
76 * @param accountId Account ID of the user.
80 String rightsFilePath, String mimeType, String accountId, String subscriptionId) {
83 mAccountId = accountId;
79 DrmRights( String rightsFilePath, String mimeType, String accountId, String subscriptionId) argument
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java527 final long accountId = cursor.getLong(0);
536 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
540 db.delete(CE_TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
549 accountId, accounts);
1191 long accountId = db.insert(CE_TABLE_ACCOUNTS, ACCOUNTS_NAME, values);
1192 if (accountId < 0) {
1199 values.put(ACCOUNTS_ID, accountId);
1212 if (insertExtraLocked(db, accountId, key, value) < 0) {
1221 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_ACCOUNTS, accountId,
1261 private long insertExtraLocked(SQLiteDatabase db, long accountId, Strin argument
3754 getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) argument
4266 logRecord(SQLiteDatabase db, String action, String tableName, long accountId, UserAccounts userAccount) argument
4274 logRecord(SQLiteDatabase db, String action, String tableName, long accountId, UserAccounts userAccount, int callingUid) argument
[all...]

Completed in 2223 milliseconds