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.java652 final long accountId = cursor.getLong(0);
661 db.delete(TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
665 db.delete(CE_TABLE_ACCOUNTS, ACCOUNTS_ID + "=" + accountId, null);
674 accountId, accounts);
1316 long accountId = db.insert(CE_TABLE_ACCOUNTS, ACCOUNTS_NAME, values);
1317 if (accountId < 0) {
1324 values.put(ACCOUNTS_ID, accountId);
1337 if (insertExtraLocked(db, accountId, key, value) < 0) {
1346 logRecord(db, DebugDbHelper.ACTION_ACCOUNT_ADD, TABLE_ACCOUNTS, accountId,
1388 private long insertExtraLocked(SQLiteDatabase db, long accountId, Strin argument
4068 getExtrasIdLocked(SQLiteDatabase db, long accountId, String key) argument
4604 logRecord(SQLiteDatabase db, String action, String tableName, long accountId, UserAccounts userAccount) argument
4612 logRecord(SQLiteDatabase db, String action, String tableName, long accountId, UserAccounts userAccount, int callingUid) argument
[all...]

Completed in 1324 milliseconds