Home
last modified time | relevance | path

Searched refs:mResponse (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/accounts/
DAccountManagerResponse.java29 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()
DAccountManager.java570 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/
DExecutorDelivery.java79 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/
DBluetoothMasRequestGetFolderListing.java31 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()
DBluetoothMasRequestGetMessagesListing.java35 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/
DBluetoothPbapRequestPullVcardEntry.java36 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()
DBluetoothPbapRequestPullPhoneBook.java36 private BluetoothPbapVcardList mResponse; field in BluetoothPbapRequestPullPhoneBook
94 mResponse = new BluetoothPbapVcardList(stream, mFormat); in readResponse()
109 return mResponse.getList(); in getList()
DBluetoothPbapRequestPullVcardListing.java36 private BluetoothPbapVcardListing mResponse = null; field in BluetoothPbapRequestPullVcardListing
89 mResponse = new BluetoothPbapVcardListing(stream); in readResponse()
104 return mResponse.getList(); in getList()
/frameworks/av/media/mtp/
DMtpDevice.cpp300 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()
DMtpServer.cpp214 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 …]
DMtpDevice.h55 MtpResponsePacket mResponse; variable
DMtpServer.h58 MtpResponsePacket mResponse; variable
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java2880 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()