Home
last modified time | relevance | path

Searched refs:mResponse (Results 1 – 12 of 12) 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.java761 mService.getAuthTokenLabel(mResponse, accountType, authTokenType); in getAuthTokenLabel()
805 mService.hasFeatures(mResponse, account, features, mContext.getOpPackageName());
865 mService.getAccountsByFeatures(mResponse, type, features,
1126 mService.renameAccount(mResponse, account, newName);
1253 mService.removeAccountAsUser(mResponse, account, false, userHandle.getIdentifier());
1279 mService.removeAccountAsUser(mResponse, account, activity != null,
1597 mService.getAuthToken(mResponse, account, authTokenType,
1768 mService.getAuthToken(mResponse, account, authTokenType,
1840 mService.addAccount(mResponse, accountType, authTokenType,
1869 mService.addAccountAsUser(mResponse, accountType, authTokenType,
[all …]
/frameworks/base/services/autofill/java/com/android/server/autofill/
DViewState.java90 private FillResponse mResponse; field in ViewState
144 return mResponse; in getResponse()
148 mResponse = response; in setResponse()
212 if (mResponse != null) { in maybeCallOnFillReady()
213 if (mResponse.getDatasets() != null || mResponse.getAuthentication() != null) { in maybeCallOnFillReady()
214 mListener.onFillReady(mResponse, this.id, mCurrentValue); in maybeCallOnFillReady()
248 if (mResponse != null) { in dump()
249 pw.print(prefix); pw.print("response id:");pw.println(mResponse.getRequestId()); in dump()
/frameworks/base/core/java/android/hardware/location/
DContextHubTransaction.java179 private ContextHubTransaction.Response<T> mResponse; field in ContextHubTransaction
263 return mResponse; in waitForResponse()
304 mExecutor.execute(() -> mListener.onComplete(this, mResponse)); in setOnCompleteListener()
348 mResponse = response; in setResponse()
353 mExecutor.execute(() -> mListener.onComplete(this, mResponse)); in setResponse()
/frameworks/av/media/mtp/
DMtpDevice.cpp341 newSession = mResponse.getParameter(1); in openSession()
509 mLastSendObjectInfoObjectHandle = mResponse.getParameter(3); in sendObjectInfo()
510 info->mStorageID = mResponse.getParameter(1); in sendObjectInfo()
511 info->mParent = mResponse.getParameter(2); in sendObjectInfo()
512 info->mHandle = mResponse.getParameter(3); in sendObjectInfo()
711 mResponse.copyFrom(mData); in readData()
712 return mResponse.getResponseCode() == MTP_RESPONSE_OK; in readData()
877 mResponse.copyFrom(mData); in readData()
894 return mResponse.getResponseCode(); in readResponse()
896 int ret = mResponse.read(mRequestIn1); in readResponse()
[all …]
DMtpServer.cpp226 mResponse.setTransactionID(transaction); in run()
227 ALOGV("sending response %04X", mResponse.getResponseCode()); in run()
228 ret = mResponse.write(mHandle); in run()
334 mResponse.reset(); in handleRequest()
458 mResponse.setResponseCode(response); in handleRequest()
509 mResponse.setParameter(1, mSessionID); in doOpenSession()
614 mResponse.setParameter(1, count); in doGetNumObjects()
617 mResponse.setParameter(1, 0); in doGetNumObjects()
889 mResponse.setParameter(1, length); in doGetPartialObject()
1020 mResponse.setParameter(1, storageID); in doSendObjectInfo()
[all …]
DMtpServer.h65 MtpResponsePacket mResponse; variable
DMtpDevice.h57 MtpResponsePacket mResponse; variable
/frameworks/base/telecomm/java/android/telecom/Logging/
DEventManager.java101 String mResponse; field in EventManager.TimedEventPair
107 this.mResponse = response; in TimedEventPair()
113 this.mResponse = response; in TimedEventPair()
217 pendingResponses.put(p.mResponse, new PendingResponse(event.eventId, in extractEventTimings()
/frameworks/base/core/java/android/view/textclassifier/
DSystemTextClassifier.java306 private T mResponse; field in SystemTextClassifier.ResponseReceiver
313 mResponse = response; in onSuccess()
339 return mResponse; in get()
/frameworks/base/core/java/android/widget/
DRemoteViews.java849 this.mResponse = response; in SetOnClickResponse()
854 mResponse = new RemoteResponse(); in SetOnClickResponse()
855 mResponse.readFromParcel(parcel); in SetOnClickResponse()
860 mResponse.writeToParcel(dest, flags); in writeToParcel()
868 if (mResponse.mPendingIntent != null) { in apply()
884 target.setTagInternal(R.id.pending_intent_tag, mResponse.mPendingIntent); in apply()
885 } else if (mResponse.mFillIntent != null) { in apply()
895 target.setTagInternal(com.android.internal.R.id.fillInIntent, mResponse); in apply()
903 target.setOnClickListener(v -> mResponse.handleViewClick(v, handler)); in apply()
911 final RemoteResponse mResponse; field in RemoteViews.SetOnClickResponse
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java3418 response = mResponse; in onResult()
4684 IAccountManagerResponse mResponse;
4721 mResponse = response;
4736 mResponse = null;
4743 if (mResponse == null) {
4747 IAccountManagerResponse response = mResponse;
4811 if (mResponse != null) {
4813 mResponse.asBinder().unlinkToDeath(this, 0 /* flags */);
4816 mResponse = null;
4824 mResponse = null;
[all …]