Searched defs:mCode (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/telephony/java/com/android/ims/
H A DImsException.java31 private int mCode; field in class:ImsException
38 mCode = code;
43 mCode = code;
52 return mCode;
/frameworks/base/core/java/android/content/
H A DUriMatcher.java131 mCode = code;
139 mCode = NO_MATCH;
206 node.mCode = code;
225 return this.mCode;
268 return node.mCode;
275 private int mCode; field in class:UriMatcher
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java41 private int mCode; field in class:MtpPropertyList
44 mCode = code;
69 return mCode;
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonEvent.java34 private final int mCode; field in class:NativeDaemonEvent
44 mCode = code;
59 return mCode;
85 return mCode >= 100 && mCode < 200;
92 return mCode >= 200 && mCode < 300;
99 return mCode >= 400 && mCode < 500;
106 return mCode >
[all...]
/frameworks/base/services/core/java/com/android/server/security/
H A DVerityUtils.java139 private final int mCode; field in class:VerityUtils.SetupResult
156 this.mCode = code;
162 return mCode == RESULT_FAILED;
166 return mCode == RESULT_OK;
/frameworks/av/media/mtp/
H A DMtpProperty.h47 MtpPropertyCode mCode; member in class:android::MtpProperty
86 MtpPropertyCode getPropertyCode() const { return mCode; }
104 return ( ((mCode & 0xF000) == 0x5000)
105 || ((mCode & 0xF800) == 0xD000));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java61 private int mCode; field in class:KeyButtonView
101 mCode = a.getInteger(R.styleable.KeyButtonView_keyCode, 0);
124 return mCode != 0 || super.isClickable();
128 mCode = code;
163 if (mCode != 0) {
182 if (action == ACTION_CLICK && mCode != 0) {
188 } else if (action == ACTION_LONG_CLICK && mCode != 0) {
218 if (mCode != 0) {
249 if (mCode != 0) {
269 if (mCode !
[all...]
/frameworks/native/include/binder/
H A DTextOutput.h89 uint32_t mCode; member in class:android::TypeCode
175 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
177 inline uint32_t TypeCode::typeCode() const { return mCode; }
/frameworks/native/libs/binder/include/binder/
H A DTextOutput.h89 uint32_t mCode; member in class:android::TypeCode
175 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { }
177 inline uint32_t TypeCode::typeCode() const { return mCode; }
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResultCode.java164 private int mCode; field in class:ResultCode
167 mCode = code;
175 return mCode;
180 if (r.mCode == value) {
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsReasonInfo.java430 public int mCode; field in class:ImsReasonInfo
440 mCode = CODE_UNSPECIFIED;
446 mCode = in.readInt();
453 mCode = code;
459 mCode = code;
468 return mCode;
491 return "ImsReasonInfo :: {" + mCode + ", " + mExtraCode + ", " + mExtraMessage + "}";
501 out.writeInt(mCode);

Completed in 228 milliseconds