/aosp12/packages/services/Car/cpp/computepipe/runner/graph/ |
H A D | GrpcGraph.cpp | 84 return mErrorMessage; in GetErrorMessage() 113 mErrorMessage = "Failed to parse graph options"; in initialize() 164 mErrorMessage = response.message(); in handleConfigPhase() 212 mErrorMessage = response.message(); in handleExecutionPhase() 255 mErrorMessage = response.message(); in handleStopWithFlushPhase() 295 mErrorMessage = response.message(); in handleStopImmediatePhase() 335 mErrorMessage = response.message(); in handleResetPhase() 376 mErrorMessage = response.message(); in StartGraphProfiling() 400 mErrorMessage = response.message(); in StopGraphProfiling() 444 mErrorMessage = std::move(errorMessage); in dispatchGraphTerminationMessage() [all …]
|
H A D | GrpcGraph.h | 116 std::string mErrorMessage = ""; variable
|
/aosp12/packages/services/Car/car-lib/src/android/car/user/ |
H A D | UserIdentificationAssociationResponse.java | 52 private final String mErrorMessage; field in UserIdentificationAssociationResponse 75 this.mErrorMessage = errorMessage; in UserIdentificationAssociationResponse() 150 return mErrorMessage; in getErrorMessage() 179 "errorMessage = " + mErrorMessage + ", " + in toString() 192 if (mErrorMessage != null) flg |= 0x2; in writeToParcel() 195 if (mErrorMessage != null) dest.writeString(mErrorMessage); in writeToParcel() 216 this.mErrorMessage = errorMessage; in UserIdentificationAssociationResponse()
|
H A D | UserCreationResult.java | 98 private final String mErrorMessage; field in UserCreationResult 192 this.mErrorMessage = errorMessage; in UserCreationResult() 224 return mErrorMessage; in getErrorMessage() 236 "errorMessage = " + mErrorMessage + in toString() 248 if (mErrorMessage != null) flg |= 0x4; in writeToParcel() 252 if (mErrorMessage != null) dest.writeString(mErrorMessage); in writeToParcel() 288 this.mErrorMessage = errorMessage; in UserCreationResult()
|
H A D | UserSwitchResult.java | 118 private final String mErrorMessage; field in UserSwitchResult 236 this.mErrorMessage = errorMessage; in UserSwitchResult() 265 return mErrorMessage; in getErrorMessage() 276 "errorMessage = " + mErrorMessage + in toString() 287 if (mErrorMessage != null) flg |= 0x2; in writeToParcel() 290 if (mErrorMessage != null) dest.writeString(mErrorMessage); in writeToParcel() 334 this.mErrorMessage = errorMessage; in UserSwitchResult()
|
/aosp12/frameworks/base/apex/appsearch/framework/java/external/android/app/appsearch/ |
H A D | AppSearchResult.java | 100 @Nullable private final String mErrorMessage; field in AppSearchResult 108 mErrorMessage = errorMessage; in AppSearchResult() 147 return mErrorMessage; in getErrorMessage() 161 && Objects.equals(mErrorMessage, otherResult.mErrorMessage); in equals() 166 return Objects.hash(mResultCode, mResultValue, mErrorMessage); in hashCode() 175 return "[FAILURE(" + mResultCode + ")]: " + mErrorMessage; in toString()
|
/aosp12/frameworks/base/media/java/android/media/session/ |
H A D | PlaybackState.java | 299 private final CharSequence mErrorMessage; field in PlaybackState 316 mErrorMessage = error; in PlaybackState() 329 mErrorMessage = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in); in PlaybackState() 344 bob.append(", error=").append(mErrorMessage); in toString() 364 TextUtils.writeToParcel(mErrorMessage, dest, 0); in writeToParcel() 459 return mErrorMessage; in getErrorMessage() 706 private CharSequence mErrorMessage; field in PlaybackState.Builder 735 mErrorMessage = from.mErrorMessage; in Builder() 935 mErrorMessage = error; in setErrorMessage() 958 mActions, mCustomActions, mActiveItemId, mErrorMessage, mExtras); in build()
|
/aosp12/frameworks/native/include/powermanager/ |
H A D | PowerHalWrapper.h | 71 const char* errorMessage() const { return mErrorMessage.c_str(); } in errorMessage() 75 std::string mErrorMessage; variable 79 : mValue(std::make_optional(value)), mErrorMessage(), mUnsupported(false) {} in HalResult() 81 : mValue(), mErrorMessage(std::move(errorMessage)), mUnsupported(unsupported) {} in HalResult() 102 const char* errorMessage() const { return mErrorMessage.c_str(); } in errorMessage() 105 std::string mErrorMessage; 110 : mErrorMessage(), mFailed(false), mUnsupported(unsupported) {} 112 : mErrorMessage(std::move(errorMessage)), mFailed(true), mUnsupported(false) {} in HalResult()
|
/aosp12/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/testutils/ |
H A D | PollingCheck.java | 30 private final String mErrorMessage; field in PollingCheck 46 mErrorMessage = errorMessage; in PollingCheck() 71 Assert.assertTrue(mErrorMessage, check()); in run()
|
/aosp12/frameworks/base/core/java/android/content/pm/parsing/result/ |
H A D | ParseTypeImpl.java | 52 private String mErrorMessage; field in ParseTypeImpl 114 mErrorMessage = null; 131 + mErrorMessage, mException); 223 mErrorMessage = errorMessage; 265 return mErrorMessage;
|
/aosp12/packages/apps/Settings/src/com/android/settings/development/ |
H A D | AdbQrcodeScannerFragment.java | 80 private TextView mErrorMessage; field in AdbQrcodeScannerFragment 124 mErrorMessage.setVisibility(View.INVISIBLE); 130 mErrorMessage.setVisibility(View.VISIBLE); 131 mErrorMessage.setText(errorMessage); 132 mErrorMessage.sendAccessibilityEvent( 182 mErrorMessage = view.findViewById(R.id.error_message); in onViewCreated()
|
/aosp12/packages/apps/Settings/src/com/android/settings/wifi/dpp/ |
H A D | WifiDppQrCodeScannerFragment.java | 104 private TextView mErrorMessage; field in WifiDppQrCodeScannerFragment 128 mErrorMessage.setVisibility(View.INVISIBLE); 134 mErrorMessage.setVisibility(View.VISIBLE); 135 mErrorMessage.setText(errorMessage); 136 mErrorMessage.sendAccessibilityEvent( 228 mErrorMessage.setVisibility(View.INVISIBLE); in notifyUserForQrCodeRecognition() 439 mErrorMessage = view.findViewById(R.id.error_message); in onViewCreated()
|
/aosp12/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/ |
H A D | TmaMediaEvent.java | 116 final String mErrorMessage; field in TmaMediaEvent 130 mErrorMessage = errorMessage; in TmaMediaEvent() 162 ", mErrorMessage='" + mErrorMessage + '\'' + in toString()
|
H A D | TmaPlayer.java | 106 .setErrorMessage(event.mErrorCode.mValue, event.mErrorMessage) in setPlaybackState()
|
/aosp12/frameworks/native/services/vibratorservice/include/vibratorservice/ |
H A D | VibratorHalWrapper.h | 71 const char* errorMessage() const { return mErrorMessage.c_str(); } in errorMessage() 82 std::string mErrorMessage; variable 86 : mValue(std::make_optional(value)), mErrorMessage(), mUnsupported(false) {} in HalResult() 88 : mValue(), mErrorMessage(std::move(errorMessage)), mUnsupported(unsupported) {} in HalResult() 109 const char* errorMessage() const { return mErrorMessage.c_str(); } in errorMessage() 119 std::string mErrorMessage; 124 : mErrorMessage(), mFailed(false), mUnsupported(unsupported) {} 126 : mErrorMessage(std::move(errorMessage)), mFailed(true), mUnsupported(false) {} in HalResult()
|
/aosp12/packages/apps/TV/src/com/android/tv/dvr/ui/browse/ |
H A D | DetailsContentPresenter.java | 54 final LinearLayout mErrorMessage; field in DetailsContentPresenter.ViewHolder 154 mErrorMessage = in ViewHolder() 328 vh.mErrorMessage.setVisibility(View.VISIBLE); in onBindViewHolder()
|
/aosp12/packages/apps/Car/libs/car-assist-client-lib/src/com/android/car/assist/client/ |
H A D | CarAssistUtils.java | 74 private final String mErrorMessage; field in CarAssistUtils 110 mErrorMessage = context.getString(R.string.assist_action_failed_toast); in CarAssistUtils() 458 mFallbackAssistant.handleErrorMessage(mErrorMessage, listener); in handleFallback()
|
/aosp12/frameworks/opt/net/voip/src/java/android/net/sip/ |
H A D | SipAudioCall.java | 199 private String mErrorMessage; field in SipAudioCall 241 listener.onError(this, mErrorCode, mErrorMessage); in setListener() 306 mErrorMessage = null; in close() 505 mErrorMessage = message; in createListener() 570 mErrorMessage = message;
|
/aosp12/hardware/interfaces/identity/support/src/ |
H A D | cppbor_parse.cpp | 306 mErrorMessage = errorMessage; in error() 313 return {std::move(p), mPosition, std::move(mErrorMessage)}; in parseResult() 334 std::string mErrorMessage; member in cppbor::__anone2829d280110::FullParseClient
|
/aosp12/frameworks/layoutlib/validator/src/com/android/tools/idea/validator/ |
H A D | ValidatorResult.java | 105 public String mErrorMessage = null; field in ValidatorResult.Metric
|
/aosp12/frameworks/av/services/audiopolicy/engine/config/src/ |
H A D | EngineConfig.cpp | 636 if (!mErrorMessage.empty()) { in ~XmlErrorHandler() 637 ALOG(LOG_ERROR, "libxml2", "%s", mErrorMessage.c_str()); in ~XmlErrorHandler() 646 static_cast<XmlErrorHandler*>(ctx)->mErrorMessage += buffer; in xmlErrorHandler() 649 std::string mErrorMessage; member in android::engineConfig::__anon4b68f5430310::XmlErrorHandler
|
/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/ |
H A D | StagingManagerTest.java | 579 private String mErrorMessage; field in StagingManagerTest.FakeStagedSession 630 return mErrorMessage; in getErrorMessage() 741 mErrorMessage = errorMessage; in setSessionFailed()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/vcard/ |
H A D | ImportVCardActivity.java | 110 private String mErrorMessage; field in ImportVCardActivity 122 mErrorMessage = errorMessage; in DialogDisplayer() 760 String message = mErrorMessage; in onCreateDialog()
|
/aosp12/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
H A D | SipService.java | 814 private String mErrorMessage; field in SipService.SipAutoReg 964 mErrorMessage); in setListener() 996 mErrorMessage = null; in run() 1097 mErrorMessage = message; in onRegistrationFailed()
|
/aosp12/frameworks/base/rs/java/android/renderscript/ |
H A D | RenderScript.java | 1196 protected String mErrorMessage; field in RenderScript.RSErrorHandler 1331 mRS.mErrorCallback.mErrorMessage = e; in run()
|