Home
last modified time | relevance | path

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

/packages/services/Car/tools/keventreader/common/com/android/car/keventreader/
DKeypressEvent.java24 public final class KeypressEvent implements Parcelable { class
585 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 KeypressEvent
616 if (o instanceof KeypressEvent) { in equals()
617 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/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/
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",
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/input/
DInputTestFragment.java56 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 {