/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 | 570 mService.getAuthTokenLabel(mResponse, accountType, authTokenType); in getAuthTokenLabel() 615 mService.hasFeatures(mResponse, account, features, mContext.getOpPackageName()); 667 mService.getAccountsByFeatures(mResponse, type, features, 780 mService.renameAccount(mResponse, account, newName); 844 mService.removeAccount(mResponse, account, false); 903 mService.removeAccount(mResponse, account, activity != null); 924 mService.removeAccountAsUser(mResponse, account, false, userHandle.getIdentifier()); 949 mService.removeAccountAsUser(mResponse, account, activity != null, 1273 mService.getAuthToken(mResponse, account, authTokenType, 1441 mService.getAuthToken(mResponse, account, authTokenType, [all …]
|
/frameworks/volley/src/main/java/com/android/volley/ |
D | ExecutorDelivery.java | 79 private final Response mResponse; field in ExecutorDelivery.ResponseDeliveryRunnable 84 mResponse = response; in ResponseDeliveryRunnable() 98 if (mResponse.isSuccess()) { in run() 99 mRequest.deliverResponse(mResponse.result); in run() 101 mRequest.deliverError(mResponse.error); in run() 106 if (mResponse.intermediate) { in run()
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
D | BluetoothMasRequestGetFolderListing.java | 31 private BluetoothMapFolderListing mResponse = null; field in BluetoothMasRequestGetFolderListing 60 mResponse = new BluetoothMapFolderListing(stream); in readResponse() 64 if (mResponse == null) { in getList() 68 return mResponse.getList(); in getList()
|
D | BluetoothMasRequestGetMessagesListing.java | 35 private BluetoothMapMessagesListing mResponse = null; field in BluetoothMasRequestGetMessagesListing 119 mResponse = new BluetoothMapMessagesListing(stream); in readResponse() 136 if (mResponse == null) { in getList() 140 return mResponse.getList(); in getList()
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/ |
D | BluetoothPbapRequestPullVcardEntry.java | 36 private BluetoothPbapVcardList mResponse; field in BluetoothPbapRequestPullVcardEntry 67 mResponse = new BluetoothPbapVcardList(stream, mFormat); in readResponse() 73 if (mResponse.getCount() == 0) { in checkResponseCode() 84 return mResponse.getFirst(); in getVcard()
|
D | BluetoothPbapRequestPullPhoneBook.java | 36 private BluetoothPbapVcardList mResponse; field in BluetoothPbapRequestPullPhoneBook 94 mResponse = new BluetoothPbapVcardList(stream, mFormat); in readResponse() 109 return mResponse.getList(); in getList()
|
D | BluetoothPbapRequestPullVcardListing.java | 36 private BluetoothPbapVcardListing mResponse = null; field in BluetoothPbapRequestPullVcardListing 89 mResponse = new BluetoothPbapVcardListing(stream); in readResponse() 104 return mResponse.getList(); in getList()
|
/frameworks/av/media/mtp/ |
D | MtpDevice.cpp | 300 newSession = mResponse.getParameter(1); in openSession() 466 info->mStorageID = mResponse.getParameter(1); in sendObjectInfo() 467 info->mParent = mResponse.getParameter(2); in sendObjectInfo() 468 info->mHandle = mResponse.getParameter(3); in sendObjectInfo() 815 mResponse.copyFrom(mData); in readData() 838 return mResponse.getResponseCode(); in readResponse() 840 int ret = mResponse.read(mRequestIn1); in readResponse() 844 ret = mResponse.read(mRequestIn1); in readResponse() 846 mResponse.dump(); in readResponse() 847 return mResponse.getResponseCode(); in readResponse()
|
D | MtpServer.cpp | 214 mResponse.setTransactionID(transaction); in run() 215 ALOGV("sending response %04X", mResponse.getResponseCode()); in run() 216 ret = mResponse.write(fd); in run() 217 mResponse.dump(); in run() 320 mResponse.reset(); in handleRequest() 434 mResponse.setResponseCode(response); in handleRequest() 495 mResponse.setParameter(1, mSessionID); in doOpenSession() 601 mResponse.setParameter(1, count); in doGetNumObjects() 604 mResponse.setParameter(1, 0); in doGetNumObjects() 862 mResponse.setParameter(1, length); in doGetPartialObject() [all …]
|
D | MtpDevice.h | 55 MtpResponsePacket mResponse; variable
|
D | MtpServer.h | 58 MtpResponsePacket mResponse; variable
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 2880 IAccountManagerResponse mResponse; field in AccountManagerService.Session 2917 mResponse = response; in Session() 2932 mResponse = null; in Session() 2939 if (mResponse == null) { in getResponseAndClose() 2943 IAccountManagerResponse response = mResponse; in getResponseAndClose() 2955 if (mResponse != null) { in close() 2957 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */); in close() 2960 mResponse = null; in close() 2968 mResponse = null; in binderDied() 3125 response = mResponse; in onResult()
|