Searched refs:mHmac (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/view/displayhash/ |
D | DisplayHash.java | 62 private final byte[] mHmac; field in DisplayHash 87 mHmac = hmac; in DisplayHash() 88 AnnotationValidations.validate(NonNull.class, null, mHmac); in DisplayHash() 145 return mHmac; in getHmac() 156 + "hmac = " + byteArrayToString(mHmac) in toString() 189 dest.writeByteArray(mHmac); in writeToParcel() 212 mHmac = hmac; in DisplayHash() 213 AnnotationValidations.validate(NonNull.class, null, mHmac); in DisplayHash()
|
/frameworks/base/core/java/android/view/ |
D | KeyEvent.java | 1288 private @Nullable byte[] mHmac; field in KeyEvent 1574 mHmac = origEvent.mHmac == null ? null : origEvent.mHmac.clone(); in KeyEvent() 1603 mHmac = null; // Don't copy HMAC, it will be invalid because eventTime is changing in KeyEvent() 1646 ev.mHmac = hmac; in obtain() 1697 ev.mHmac = other.mHmac == null ? null : other.mHmac.clone(); in obtain() 1794 mHmac = null; // Don't copy the hmac, it will be invalid since action is changing in KeyEvent() 3147 mHmac = in.createByteArray(); in KeyEvent() 3167 out.writeByteArray(mHmac); in writeToParcel()
|
/frameworks/base/core/jni/ |
D | android_view_KeyEvent.cpp | 83 jfieldID mHmac; member 124 jobject hmacObj = env->GetObjectField(eventObj, gKeyEventClassInfo.mHmac); in android_view_KeyEvent_toNative() 195 gKeyEventClassInfo.mHmac = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mHmac", "[B"); in register_android_view_KeyEvent()
|
/frameworks/native/libs/input/ |
D | Input.cpp | 196 mHmac = hmac; in initialize() 204 mHmac = from.mHmac; in initialize() 442 other->mHmac); in copyFrom() 641 std::move(hmac.begin(), hmac.begin() + hmac.size(), mHmac.begin()); in readFromParcel() 701 std::vector<uint8_t> hmac(mHmac.begin(), mHmac.end()); in writeToParcel()
|
/frameworks/native/include/input/ |
D | Input.h | 467 inline std::array<uint8_t, 32> getHmac() const { return mHmac; } in getHmac() 481 std::array<uint8_t, 32> mHmac; variable
|