Searched defs:mResponse (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/accounts/
H A DAccountManagerResponse.java29 private IAccountManagerResponse mResponse; field in class:AccountManagerResponse
33 mResponse = response;
38 mResponse =
44 mResponse.onResult(result);
52 mResponse.onError(errorCode, errorMessage);
65 dest.writeStrongBinder(mResponse.asBinder());
H A DAccountManager.java406 mService.hasFeatures(mResponse, account, features);
450 mService.getAccountsByFeatures(mResponse, type, features);
518 mService.removeAccount(mResponse, account);
789 mService.getAuthToken(mResponse, account, authTokenType,
870 mService.getAuthToken(mResponse, account, authTokenType,
932 mService.addAcount(mResponse, accountType, authTokenType,
1001 mService.confirmCredentials(mResponse, account, options, activity != null);
1062 mService.updateCredentials(mResponse, account, authTokenType, activity != null,
1111 mService.editProperties(mResponse, accountType, activity != null);
1160 final IAccountManagerResponse mResponse; field in class:AccountManager.AmsTask
1286 final public IAccountManagerResponse mResponse; field in class:AccountManager.BaseFutureTask
[all...]
H A DAccountManagerService.java1233 IAccountManagerResponse mResponse; field in class:AccountManagerService.Session
1253 mResponse = response;
1263 mResponse = null;
1269 if (mResponse == null) {
1273 IAccountManagerResponse response = mResponse;
1274 close(); // this clears mResponse so we need to save the response before this call
1285 if (mResponse != null) {
1287 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */);
1290 mResponse = null;
1297 mResponse
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DAtCommandResult.java46 private StringBuilder mResponse; // Response with CRLF line breaks field in class:AtCommandResult
55 mResponse = new StringBuilder();
76 appendWithCrlf(mResponse, response);
87 appendWithCrlf(mResponse, result.mResponse.toString());
96 StringBuilder result = new StringBuilder(mResponse.toString());

Completed in 70 milliseconds