Home
last modified time | relevance | path

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

/external/libchrome-gestures/src/
Dinterpreter.cc23 using EventDebug = ActivityLog::EventDebug; typedef
158 bool Interpreter::EventDebugLoggingIsEnabled(ActivityLog::EventDebug event) { in EventDebugLoggingIsEnabled()
171 void Interpreter::EventDebugLoggingDisable(ActivityLog::EventDebug event) { in EventDebugLoggingDisable()
175 void Interpreter::EventDebugLoggingEnable(ActivityLog::EventDebug event) { in EventDebugLoggingEnable()
194 if (EventDebugLoggingIsEnabled(EventDebug::Gesture)) in LogGestureConsume()
200 if (EventDebugLoggingIsEnabled(EventDebug::Gesture)) in LogGestureProduce()
206 if (EventDebugLoggingIsEnabled(EventDebug::HardwareState)) in LogHardwareStatePre()
212 if (EventDebugLoggingIsEnabled(EventDebug::HardwareState)) in LogHardwareStatePost()
218 if (EventDebugLoggingIsEnabled(EventDebug::HandleTimer)) in LogHandleTimerPre()
224 if (EventDebugLoggingIsEnabled(EventDebug::HandleTimer)) in LogHandleTimerPost()
Dinterpreter_unittest.cc215 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
216 base_interpreter.EventDebugLoggingEnable(EventDebug::HardwareState); in TEST()
218 1 << static_cast<int>(EventDebug::HardwareState)); in TEST()
220 base_interpreter.EventDebugLoggingDisable(EventDebug::HardwareState); in TEST()
242 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
244 base_interpreter.EventDebugLoggingEnable(EventDebug::HardwareState); in TEST()
269 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
271 base_interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST()
282 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
284 base_interpreter.EventDebugLoggingEnable(EventDebug::HandleTimer); in TEST()
Dtimestamp_filter_interpreter_unittest.cc15 using EventDebug = ActivityLog::EventDebug; typedef
233 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
235 interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST()
236 interpreter.EventDebugLoggingEnable(EventDebug::HardwareState); in TEST()
237 interpreter.EventDebugLoggingEnable(EventDebug::HandleTimer); in TEST()
238 interpreter.EventDebugLoggingEnable(EventDebug::Timestamp); in TEST()
277 interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST_P()
278 interpreter.EventDebugLoggingEnable(EventDebug::HardwareState); in TEST_P()
279 interpreter.EventDebugLoggingEnable(EventDebug::HandleTimer); in TEST_P()
280 interpreter.EventDebugLoggingEnable(EventDebug::Timestamp); in TEST_P()
Dlogging_filter_interpreter_unittest.cc44 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
47 Json::Value((1 << static_cast<int>(EventDebug::Gesture)) | in TEST()
48 (1 << static_cast<int>(EventDebug::HardwareState)))); in TEST()
51 (1 << static_cast<int>(EventDebug::Gesture)) | in TEST()
52 (1 << static_cast<int>(EventDebug::HardwareState))); in TEST()
Daccel_filter_interpreter_unittest.cc25 using EventDebug = ActivityLog::EventDebug; typedef
191 accel_interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST_F()
192 accel_interpreter.EventDebugLoggingEnable(EventDebug::Accel); in TEST_F()
243 accel_interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST_F()
244 accel_interpreter.EventDebugLoggingEnable(EventDebug::Accel); in TEST_F()
302 accel_interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST_F()
303 accel_interpreter.EventDebugLoggingEnable(EventDebug::Accel); in TEST_F()
361 accel_interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST_F()
362 accel_interpreter.EventDebugLoggingEnable(EventDebug::Accel); in TEST_F()
1122 accel_interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST_F()
[all …]
Dintegral_gesture_filter_interpreter_unittest.cc229 using EventDebug = ActivityLog::EventDebug; in TEST() typedef
231 interpreter.EventDebugLoggingEnable(EventDebug::Gesture); in TEST()
/external/libchrome-gestures/include/
Dtimestamp_filter_interpreter.h77 using EventDebug = ActivityLog::EventDebug; in LogDebugData() local
78 if (EventDebugLoggingIsEnabled(EventDebug::Timestamp)) in LogDebugData()
Dinterpreter.h101 bool EventDebugLoggingIsEnabled(ActivityLog::EventDebug event);
104 void EventDebugLoggingDisable(ActivityLog::EventDebug event);
105 void EventDebugLoggingEnable(ActivityLog::EventDebug event);
Daccel_filter_interpreter.h137 using EventDebug = ActivityLog::EventDebug; in LogDebugData() local
138 if (EventDebugLoggingIsEnabled(EventDebug::Accel)) in LogDebugData()
Dactivity_log.h139 enum class EventDebug { enum