Searched refs:accountId (Results 1 - 9 of 9) sorted by relevance

/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/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/av/include/drm/
H A DDrmRights.h40 * @param[in] accountId Account Id of the user
45 const String8& accountId = String8("_NO_USER"),
53 * @param[in] accountId Account Id of the user
58 const String8& accountId = String8("_NO_USER"),
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountsDb.java355 boolean deleteAuthtokensByAccountIdAndType(long accountId, String authtokenType) { argument
359 new String[]{String.valueOf(accountId), authtokenType}) > 0;
369 long insertAuthToken(long accountId, String authTokenType, String authToken) { argument
372 values.put(AUTHTOKENS_ACCOUNTS_ID, accountId);
379 int updateCeAccountPassword(long accountId, String password) { argument
385 new String[] {String.valueOf(accountId)});
388 boolean renameCeAccount(long accountId, String newName) { argument
392 final String[] argsAccountId = {String.valueOf(accountId)};
397 boolean deleteAuthTokensByAccountId(long accountId) { argument
400 new String[] {String.valueOf(accountId)}) >
403 findExtrasIdByAccountId(long accountId, String key) argument
429 insertExtra(long accountId, String key, String value) argument
678 deleteDeAccount(long accountId) argument
830 insertDeAccount(Account account, long accountId) argument
840 renameDeAccount(long accountId, String newName, String previousName) argument
849 deleteGrantsByAccountIdAuthTokenTypeAndUid(long accountId, String authTokenType, long uid) argument
887 insertGrant(long accountId, String authTokenType, int uid) argument
902 setAccountVisibility(long accountId, String packageName, int visibility) argument
926 findAccountVisibility(long accountId, String packageName) argument
941 findDeAccountByAccountId(long accountId) argument
1248 deleteCeAccount(long accountId) argument
[all...]
H A DAccountManagerService.java860 final long accountId = accounts.accountsDb.findDeAccountId(account);
861 if (accountId < 0) {
867 if (!accounts.accountsDb.setAccountVisibility(accountId, packageName,
1185 final long accountId = accountEntry.getKey();
1197 accountsDb.deleteDeAccount(accountId);
1202 accountsDb.deleteCeAccount(accountId);
1211 AccountsDb.TABLE_ACCOUNTS, accountId, accounts);
1793 long accountId = accounts.accountsDb.insertCeAccount(account, password);
1794 if (accountId < 0) {
1800 if (accounts.accountsDb.insertDeAccount(account, accountId) <
5089 logRecord(String action, String tableName, long accountId, UserAccounts userAccount) argument
5097 logRecord(String action, String tableName, long accountId, UserAccounts userAccount, int callingUid) argument
[all...]
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
H A DTelecom.java207 final String accountId = nextArgRequired();
216 return new PhoneAccountHandle(component, accountId, userHandle);
/frameworks/base/core/java/android/provider/
H A DCallLog.java662 String accountId = null;
665 accountId = accountHandle.getId();
682 values.put(PHONE_ACCOUNT_ID, accountId);

Completed in 224 milliseconds