Home
last modified time | relevance | path

Searched refs:mHmac (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/displayhash/
DDisplayHash.java62 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/
DKeyEvent.java1288 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/
Dandroid_view_KeyEvent.cpp83 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/
DInput.cpp196 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/
DInput.h467 inline std::array<uint8_t, 32> getHmac() const { return mHmac; } in getHmac()
481 std::array<uint8_t, 32> mHmac; variable