/frameworks/base/core/java/android/accounts/ |
D | AccountManagerResponse.java | 29 private IAccountManagerResponse mResponse; field in AccountManagerResponse 33 mResponse = response; in AccountManagerResponse() 38 mResponse = in AccountManagerResponse() 44 mResponse.onResult(result); in onResult() 52 mResponse.onError(errorCode, errorMessage); in onError() 65 dest.writeStrongBinder(mResponse.asBinder()); in writeToParcel()
|
D | AccountManager.java | 443 mService.getAuthTokenLabel(mResponse, accountType, authTokenType); in getAuthTokenLabel() 486 mService.hasFeatures(mResponse, account, features); 530 mService.getAccountsByFeatures(mResponse, type, features); 598 mService.removeAccount(mResponse, account); 876 mService.getAuthToken(mResponse, account, authTokenType, 1046 mService.getAuthToken(mResponse, account, authTokenType, 1113 mService.addAcount(mResponse, accountType, authTokenType, 1181 mService.confirmCredentials(mResponse, account, options, activity != null); 1241 mService.updateCredentials(mResponse, account, authTokenType, activity != null, 1290 mService.editProperties(mResponse, accountType, activity != null); [all …]
|
D | AccountManagerService.java | 1599 IAccountManagerResponse mResponse; field in AccountManagerService.Session 1621 mResponse = response; in Session() 1631 mResponse = null; in Session() 1637 if (mResponse == null) { in getResponseAndClose() 1641 IAccountManagerResponse response = mResponse; in getResponseAndClose() 1653 if (mResponse != null) { in close() 1655 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */); in close() 1658 mResponse = null; in close() 1665 mResponse = null; in binderDied() 1763 response = mResponse; in onResult()
|
/frameworks/base/core/java/android/bluetooth/ |
D | AtCommandResult.java | 44 private StringBuilder mResponse; // Response with CRLF line breaks field in AtCommandResult 53 mResponse = new StringBuilder(); in AtCommandResult() 74 appendWithCrlf(mResponse, response); in addResponse() 85 appendWithCrlf(mResponse, result.mResponse.toString()); in addResult() 94 StringBuilder result = new StringBuilder(mResponse.toString()); in toString()
|
/frameworks/support/volley/src/com/android/volley/ |
D | ExecutorDelivery.java | 87 private final Response mResponse; field in ExecutorDelivery.ResponseDeliveryRunnable 92 mResponse = response; in ResponseDeliveryRunnable() 112 if (mResponse.isSuccess()) { in run() 113 mRequest.deliverResponse(mResponse.result); in run() 115 mRequest.deliverError(mResponse.error); in run() 120 if (mResponse.intermediate) { in run()
|
/frameworks/av/media/mtp/ |
D | MtpServer.cpp | 212 mResponse.setTransactionID(transaction); in run() 213 ALOGV("sending response %04X", mResponse.getResponseCode()); in run() 214 ret = mResponse.write(fd); in run() 215 mResponse.dump(); in run() 313 mResponse.reset(); in handleRequest() 418 mResponse.setResponseCode(response); in handleRequest() 479 mResponse.setParameter(1, mSessionID); in doOpenSession() 573 mResponse.setParameter(1, count); in doGetNumObjects() 576 mResponse.setParameter(1, 0); in doGetNumObjects() 801 mResponse.setParameter(1, length); in doGetPartialObject() [all …]
|
D | MtpDevice.cpp | 291 newSession = mResponse.getParameter(1); in openSession() 451 info->mStorageID = mResponse.getParameter(1); in sendObjectInfo() 452 info->mParent = mResponse.getParameter(2); in sendObjectInfo() 453 info->mHandle = mResponse.getParameter(3); in sendObjectInfo() 796 mResponse.copyFrom(mData); in readData() 819 return mResponse.getResponseCode(); in readResponse() 821 int ret = mResponse.read(mRequestIn1); in readResponse() 825 ret = mResponse.read(mRequestIn1); in readResponse() 827 mResponse.dump(); in readResponse() 828 return mResponse.getResponseCode(); in readResponse()
|
D | MtpDevice.h | 55 MtpResponsePacket mResponse; variable
|
D | MtpServer.h | 58 MtpResponsePacket mResponse; variable
|