Home
last modified time | relevance | path

Searched refs:eventType (Results 1 – 4 of 4) sorted by relevance

/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/
DCrashHelper.java75 String eventType = appCrashAtom.eventType; in getMetrics() local
82 eventType, pkgName, foregroundState)); in getMetrics()
85 MetricUtility.addMetric(TOTAL_PREFIX + eventType, appCrashResultMap); in getMetrics()
89 eventType, pkgName, String.valueOf(foregroundState)); in getMetrics()
/platform_testing/libraries/uinput-device-test-helper/src/android/platform/helpers/uinput/
DUInputDevice.kt60 fun sendEventWithValues(deviceId: Int, eventType: Int, keycode: Int, value: Int) in isInputDevice()
/platform_testing/libraries/screenshot/deviceless/layoutlib/tests/src/com/android/layoutlib/bridge/intensive/setup/
DConfigGenerator.java220 int eventType = xmlPullParser.getEventType(); in getEnumMap() local
222 while (eventType != XmlPullParser.END_DOCUMENT) { in getEnumMap()
223 if (eventType == XmlPullParser.START_TAG) { in getEnumMap()
240 } else if (eventType == XmlPullParser.END_TAG) { in getEnumMap()
245 eventType = xmlPullParser.next(); in getEnumMap()
/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DInputDeviceRule.kt130 override fun sendEventWithValues(deviceId: Int, eventType: Int, keycode: Int, value: Int) { in <lambda>()
131 injectEvdevEvents(deviceId, listOf(eventType, keycode, value, EV_SYN, SYN_REPORT, 0)) in <lambda>()