HomeSort by relevance Sort by last modified time
    Searched defs:KeypressEvent (Results 1 - 3 of 3) sorted by null

  /packages/services/Car/tools/keventreader/server/
event.cpp 24 KeypressEvent::KeypressEvent(const std::string source, uint32_t keycode, bool keydown) {
30 status_t KeypressEvent::writeToParcel(Parcel* parcel) const {
39 status_t KeypressEvent::readFromParcel(const Parcel* parcel) {
event.h 26 struct KeypressEvent : public Parcelable {
27 // required to be callable as KeypressEvent() because Parcelable
28 KeypressEvent(const std::string source = "", uint32_t keycode = 0, bool keydown = false);
  /packages/services/Car/tools/keventreader/client/src/com/android/car/keventreader/
KeypressEvent.java 23 public final class KeypressEvent implements Parcelable {
584 public static final Parcelable.Creator<KeypressEvent> CREATOR =
585 new Parcelable.Creator<KeypressEvent>() {
586 public KeypressEvent createFromParcel(Parcel in) {
587 return new KeypressEvent(in);
590 public KeypressEvent[] newArray(int size) {
591 return new KeypressEvent[size];
595 public KeypressEvent(Parcel in) {
615 if (o instanceof KeypressEvent) {
616 KeypressEvent other = (KeypressEvent)o
    [all...]

Completed in 173 milliseconds