Searched refs:mResponse (Results 1 - 13 of 13) 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.java536 mService.getAuthTokenLabel(mResponse, accountType, authTokenType);
579 mService.hasFeatures(mResponse, account, features);
623 mService.getAccountsByFeatures(mResponse, type, features);
698 mService.renameAccount(mResponse, account, newName);
760 mService.removeAccount(mResponse, account, false);
813 mService.removeAccount(mResponse, account, activity != null);
833 mService.removeAccountAsUser(mResponse, account, false, userHandle.getIdentifier());
857 mService.removeAccountAsUser(mResponse, account, activity != null,
1157 mService.getAuthToken(mResponse, account, authTokenType,
1327 mService.getAuthToken(mResponse, accoun
1746 final IAccountManagerResponse mResponse; field in class:AccountManager.AmsTask
1874 final public IAccountManagerResponse mResponse; field in class:AccountManager.BaseFutureTask
[all...]
/frameworks/volley/src/com/android/volley/
H A DExecutorDelivery.java79 private final Response mResponse; field in class:ExecutorDelivery.ResponseDeliveryRunnable
84 mResponse = response;
98 if (mResponse.isSuccess()) {
99 mRequest.deliverResponse(mResponse.result);
101 mRequest.deliverError(mResponse.error);
106 if (mResponse.intermediate) {
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetFolderListing.java31 private BluetoothMapFolderListing mResponse = null; field in class:BluetoothMasRequestGetFolderListing
60 mResponse = new BluetoothMapFolderListing(stream);
64 if (mResponse == null) {
68 return mResponse.getList();
H A DBluetoothMasRequestGetMessagesListing.java35 private BluetoothMapMessagesListing mResponse = null; field in class:BluetoothMasRequestGetMessagesListing
114 mResponse = new BluetoothMapMessagesListing(stream);
131 if (mResponse == null) {
135 return mResponse.getList();
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapRequestPullVcardEntry.java36 private BluetoothPbapVcardList mResponse; field in class:BluetoothPbapRequestPullVcardEntry
67 mResponse = new BluetoothPbapVcardList(stream, mFormat);
73 if (mResponse.getCount() == 0) {
83 return mResponse.getFirst();
H A DBluetoothPbapRequestPullPhoneBook.java36 private BluetoothPbapVcardList mResponse; field in class:BluetoothPbapRequestPullPhoneBook
94 mResponse = new BluetoothPbapVcardList(stream, mFormat);
109 return mResponse.getList();
H A DBluetoothPbapRequestPullVcardListing.java36 private BluetoothPbapVcardListing mResponse = null; field in class:BluetoothPbapRequestPullVcardListing
89 mResponse = new BluetoothPbapVcardListing(stream);
104 return mResponse.getList();
/frameworks/av/media/mtp/
H A DMtpDevice.h55 MtpResponsePacket mResponse; member in class:android::MtpDevice
H A DMtpServer.cpp214 mResponse.setTransactionID(transaction);
215 ALOGV("sending response %04X", mResponse.getResponseCode());
216 ret = mResponse.write(fd);
217 mResponse.dump();
320 mResponse.reset();
434 mResponse.setResponseCode(response);
495 mResponse.setParameter(1, mSessionID);
601 mResponse.setParameter(1, count);
604 mResponse.setParameter(1, 0);
862 mResponse
[all...]
H A DMtpDevice.cpp291 newSession = mResponse.getParameter(1);
457 info->mStorageID = mResponse.getParameter(1);
458 info->mParent = mResponse.getParameter(2);
459 info->mHandle = mResponse.getParameter(3);
805 // copy it to mResponse
806 mResponse.copyFrom(mData);
829 return mResponse.getResponseCode();
831 int ret = mResponse.read(mRequestIn1);
835 ret = mResponse.read(mRequestIn1);
837 mResponse
[all...]
H A DMtpServer.h58 MtpResponsePacket mResponse; member in class:android::MtpServer
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java2436 IAccountManagerResponse mResponse; field in class:AccountManagerService.Session
2457 mResponse = response;
2468 mResponse = null;
2475 if (mResponse == null) {
2479 IAccountManagerResponse response = mResponse;
2480 close(); // this clears mResponse so we need to save the response before this call
2491 if (mResponse != null) {
2493 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */);
2496 mResponse = null;
2504 mResponse
[all...]

Completed in 4034 milliseconds