Home | History | Annotate | Download | only in hid

Lines Matching refs:mEvent

89         private Event mEvent;
92 mEvent = new Event();
96 mEvent.mId = id;
100 mEvent.mCommand = command;
104 mEvent.mName = name;
108 mEvent.mDescriptor = descriptor;
112 mEvent.mReport = report;
116 mEvent.mVid = vid;
120 mEvent.mPid = pid;
124 mEvent.mDuration = duration;
128 if (mEvent.mId == -1) {
130 } else if (mEvent.mCommand == null) {
133 if (COMMAND_REGISTER.equals(mEvent.mCommand)) {
134 if (mEvent.mDescriptor == null) {
137 } else if (COMMAND_DELAY.equals(mEvent.mCommand)) {
138 if (mEvent.mDuration <= 0) {
141 } else if (COMMAND_REPORT.equals(mEvent.mCommand)) {
142 if (mEvent.mReport == null) {
146 return mEvent;