Searched refs:KeypressEvent (Results 1 – 10 of 10) sorted by relevance
24 KeypressEvent::KeypressEvent(const std::string source, uint32_t keycode, bool keydown) { in KeypressEvent() function in KeypressEvent30 status_t KeypressEvent::writeToParcel(Parcel* parcel) const { in writeToParcel()39 status_t KeypressEvent::readFromParcel(const Parcel* parcel) { in readFromParcel()
53 std::optional<com::android::car::keventreader::KeypressEvent> InputSource::read() const { in read()68 return com::android::car::keventreader::KeypressEvent(mFilePath, evt.code, evt.isKeydown()); in read()
39 std::vector<com::android::car::keventreader::KeypressEvent> EventGatherer::read() { in read()41 std::vector<com::android::car::keventreader::KeypressEvent> result; in read()
34 std::vector<com::android::car::keventreader::KeypressEvent> read();
33 std::optional<com::android::car::keventreader::KeypressEvent> read() const;
25 public final class KeypressEvent implements Parcelable { class587 public static final Parcelable.Creator<KeypressEvent> CREATOR =588 new Parcelable.Creator<KeypressEvent>() {589 public KeypressEvent createFromParcel(Parcel in) {590 return new KeypressEvent(in);593 public KeypressEvent[] newArray(int size) {594 return new KeypressEvent[size];598 public KeypressEvent(Parcel in) { in KeypressEvent() method in KeypressEvent618 if (o instanceof KeypressEvent) { in equals()619 KeypressEvent other = (KeypressEvent)o; in equals()
19 import com.android.car.keventreader.KeypressEvent;22 void onEvent(in KeypressEvent event); in onEvent()
19 parcelable KeypressEvent cpp_header "event.h";
26 struct KeypressEvent : public Parcelable { struct28 KeypressEvent(const std::string source = "", uint32_t keycode = 0, bool keydown = false);
27 "com/android/car/keventreader/KeypressEvent.java",