Home
last modified time | relevance | path

Searched refs:KeypressEvent (Results 1 – 10 of 10) sorted by relevance

/packages/services/Car/tools/keventreader/server/
Devent.cpp24 KeypressEvent::KeypressEvent(const std::string source, uint32_t keycode, bool keydown) { in KeypressEvent() function in KeypressEvent
30 status_t KeypressEvent::writeToParcel(Parcel* parcel) const { in writeToParcel()
39 status_t KeypressEvent::readFromParcel(const Parcel* parcel) { in readFromParcel()
Dinputsource.cpp53 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()
Deventgatherer.cpp39 std::vector<com::android::car::keventreader::KeypressEvent> EventGatherer::read() { in read()
41 std::vector<com::android::car::keventreader::KeypressEvent> result; in read()
Deventgatherer.h34 std::vector<com::android::car::keventreader::KeypressEvent> read();
Dinputsource.h33 std::optional<com::android::car::keventreader::KeypressEvent> read() const;
/packages/services/Car/tools/keventreader/common/com/android/car/keventreader/
DKeypressEvent.java25 public final class KeypressEvent implements Parcelable { class
587 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 KeypressEvent
618 if (o instanceof KeypressEvent) { in equals()
619 KeypressEvent other = (KeypressEvent)o; in equals()
DIEventCallback.aidl19 import com.android.car.keventreader.KeypressEvent;
22 void onEvent(in KeypressEvent event); in onEvent()
DKeypressEvent.aidl19 parcelable KeypressEvent cpp_header "event.h";
/packages/services/Car/tools/keventreader/common/
Devent.h26 struct KeypressEvent : public Parcelable { struct
28 KeypressEvent(const std::string source = "", uint32_t keycode = 0, bool keydown = false);
DAndroid.bp27 "com/android/car/keventreader/KeypressEvent.java",