/frameworks/base/services/core/java/com/android/server/ |
D | NativeDaemonEvent.java | 34 private final int mCode; field in NativeDaemonEvent 44 mCode = code; in NativeDaemonEvent() 59 return mCode; in getCode() 85 return mCode >= 100 && mCode < 200; in isClassContinue() 92 return mCode >= 200 && mCode < 300; in isClassOk() 99 return mCode >= 400 && mCode < 500; in isClassServerError() 106 return mCode >= 500 && mCode < 600; in isClassClientError() 113 return isClassUnsolicited(mCode); in isClassUnsolicited() 126 if (mCode != code) { in checkCode()
|
/frameworks/base/telephony/java/com/android/ims/ |
D | ImsReasonInfo.java | 295 public int mCode; field in ImsReasonInfo 301 mCode = CODE_UNSPECIFIED; in ImsReasonInfo() 311 mCode = code; in ImsReasonInfo() 317 mCode = code; in ImsReasonInfo() 326 return mCode; in getCode() 349 return "ImsReasonInfo :: {" + mCode + ", " + mExtraCode + ", " + mExtraMessage + "}"; in toString() 359 out.writeInt(mCode); in writeToParcel() 365 mCode = in.readInt(); in readFromParcel()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsException.java | 29 private int mCode; field in ImsException 36 mCode = code; in ImsException() 41 mCode = code; in ImsException() 50 return mCode; in getCode()
|
D | ImsUt.java | 547 AsyncResult.forMessage(result, null, new ImsException(errorString, error.mCode)); in sendFailureReport()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyButtonView.java | 53 private int mCode; field in KeyButtonView 87 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0); in KeyButtonView() 106 mCode = code; in setCode() 135 if (mCode != 0) { in onInitializeAccessibilityNodeInfo() 154 if (action == ACTION_CLICK && mCode != 0) { in performAccessibilityActionInternal() 160 } else if (action == ACTION_LONG_CLICK && mCode != 0) { in performAccessibilityActionInternal() 184 if (mCode != 0) { in onTouchEvent() 203 if (mCode != 0) { in onTouchEvent() 211 if (mCode != 0) { in onTouchEvent() 242 final KeyEvent ev = new KeyEvent(mDownTime, when, action, mCode, repeatCount, in sendEvent()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | ResultCode.java | 164 private int mCode; field in ResultCode 167 mCode = code; in ResultCode() 175 return mCode; in value() 180 if (r.mCode == value) { in fromInt()
|
/frameworks/base/core/java/android/content/ |
D | UriMatcher.java | 131 mCode = code; in UriMatcher() 139 mCode = NO_MATCH; in UriMatcher() 206 node.mCode = code; in addURI() 225 return this.mCode; 268 return node.mCode; 275 private int mCode;
|
/frameworks/av/media/mtp/ |
D | MtpProperty.h | 45 MtpPropertyCode mCode; 84 MtpPropertyCode getPropertyCode() const { return mCode; } in getPropertyCode() 103 return ( ((mCode & 0xF000) == 0x5000) in isDeviceProperty() 104 || ((mCode & 0xF800) == 0xD000)); in isDeviceProperty()
|
D | MtpProperty.cpp | 30 : mCode(0), in MtpProperty() 52 : mCode(propCode), in MtpProperty() 129 if (!packet.getUInt16(mCode)) return false; in read() 181 packet.putUInt16(mCode); in write() 342 ALOGI(" %s (%04X)", MtpDebug::getDevicePropCodeName(mCode), mCode); in print() 344 ALOGI(" %s (%04X)", MtpDebug::getObjectPropCodeName(mCode), mCode); in print()
|
/frameworks/native/include/binder/ |
D | TextOutput.h | 94 uint32_t mCode; 166 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { } in TypeCode() 168 inline uint32_t TypeCode::typeCode() const { return mCode; } in typeCode()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | TelephonyEventLog.java | 503 b.putInt(DATA_KEY_REASONINFO_CODE, reasonInfo.mCode); in imsReasonInfoToBundle() 622 b.putInt(DATA_KEY_REASONINFO_CODE, reasonInfo.mCode); in imsHandoverToBundle()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhone.java | 1457 if (imsReasonInfo.mCode == imsReasonInfo.CODE_REGISTRATION_ERROR in processDisconnectReason()
|