Searched refs:KeypressEvent (Results 1 – 11 of 11) sorted by relevance
24 public final class KeypressEvent implements Parcelable { class585 public static final Parcelable.Creator<KeypressEvent> CREATOR =586 new Parcelable.Creator<KeypressEvent>() {587 public KeypressEvent createFromParcel(Parcel in) {588 return new KeypressEvent(in);591 public KeypressEvent[] newArray(int size) {592 return new KeypressEvent[size];596 public KeypressEvent(Parcel in) { in KeypressEvent() method in KeypressEvent616 if (o instanceof KeypressEvent) { in equals()617 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";
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;
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",
56 import com.android.car.keventreader.KeypressEvent;132 new KeyDownCounter(k -> KeypressEvent.keycodeToString(k));161 private String prettyPrint(KeypressEvent event) {169 public void onEvent(KeypressEvent keypressEvent) throws RemoteException {