Searched refs:mErrorCode (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/keystore/java/android/security/
H A DKeyStoreException.java27 private final int mErrorCode; field in class:KeyStoreException
31 mErrorCode = errorCode;
35 return mErrorCode;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsResponse.java33 int mErrorCode; field in class:SmsResponse
38 mErrorCode = errorCode;
44 + ", mErrorCode = " + mErrorCode
H A DTelephonyEventLog.java449 b.putInt(DATA_KEY_SMS_ERROR_CODE, smsResponse.mErrorCode);
H A DSMSDispatcher.java678 errorCode = ((SmsResponse)ar.result).mErrorCode;
/frameworks/native/libs/binder/
H A DStatus.cpp52 mErrorCode(errorCode) {}
56 mErrorCode(errorCode),
96 status = parcel.readInt32(&mErrorCode);
110 return mErrorCode;
124 status = parcel->writeInt32(mErrorCode);
130 mErrorCode = NO_ERROR; // an exception, not a transaction failure.
136 mErrorCode = errorCode;
141 mErrorCode = status;
153 ret.appendFormat("%d: ", mErrorCode);
/frameworks/native/include/binder/
H A DStatus.h117 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK;
120 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0;
133 // |mErrorCode| as the result of the transaction rather than write an
138 // If |mException| == EX_SERVICE_SPECIFIC we write |mErrorCode| as well.
140 int32_t mErrorCode = 0; member in class:android::binder::final
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcFailCause.java122 private final int mErrorCode; field in class:DcFailCause
132 mErrorCode = errorCode;
136 return mErrorCode;
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java192 private int mErrorCode = SipErrorCode.NO_ERROR; field in class:SipAudioCall
232 } else if (mErrorCode != SipErrorCode.NO_ERROR) {
233 listener.onError(this, mErrorCode, mErrorMessage);
297 mErrorCode = SipErrorCode.NO_ERROR;
496 mErrorCode = errorCode;
501 listener.onError(SipAudioCall.this, mErrorCode,
561 mErrorCode = errorCode;
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java811 private int mErrorCode; field in class:SipService.SipAutoReg
957 } else if (mErrorCode != SipErrorCode.NO_ERROR) {
958 if (mErrorCode == SipErrorCode.TIME_OUT) {
961 mProxy.onRegistrationFailed(mSession, mErrorCode,
993 mErrorCode = SipErrorCode.NO_ERROR;
1094 mErrorCode = errorCode;
1107 mErrorCode = SipErrorCode.TIME_OUT;
/frameworks/av/include/media/stagefright/
H A DMediaCodecSource.h135 status_t mErrorCode; member in struct:android::MediaCodecSource::Output
/frameworks/base/media/java/android/media/
H A DMediaCodec.java2063 mErrorCode = errorCode;
2094 return mErrorCode;
2132 private final int mErrorCode; field in class:MediaCodec.CodecException
2142 mErrorCode = errorCode;
2208 return mErrorCode;
2211 private int mErrorCode; field in class:MediaCodec.CryptoException
H A DMediaDrm.java225 private final int mErrorCode; field in class:MediaDrm.MediaDrmStateException
233 mErrorCode = errorCode;
248 return mErrorCode;
/frameworks/av/media/libstagefright/
H A DMediaCodecSource.cpp320 mErrorCode(OK) {
384 return output->mErrorCode;
546 output->mErrorCode = OK;
591 output->mErrorCode = err;

Completed in 328 milliseconds