Home
last modified time | relevance | path

Searched refs:annotationType (Results 1 – 3 of 3) sorted by relevance

/packages/modules/StatsD/statsd/src/logd/
DLogEvent.cpp242 void LogEvent::parseIsUidAnnotation(uint8_t annotationType) { in parseIsUidAnnotation() argument
244 || annotationType != BOOL_TYPE) { in parseIsUidAnnotation()
254 void LogEvent::parseTruncateTimestampAnnotation(uint8_t annotationType) { in parseTruncateTimestampAnnotation() argument
255 if (!mValues.empty() || annotationType != BOOL_TYPE) { in parseTruncateTimestampAnnotation()
263 void LogEvent::parsePrimaryFieldAnnotation(uint8_t annotationType) { in parsePrimaryFieldAnnotation() argument
264 if (mValues.empty() || annotationType != BOOL_TYPE) { in parsePrimaryFieldAnnotation()
273 void LogEvent::parsePrimaryFieldFirstUidAnnotation(uint8_t annotationType, in parsePrimaryFieldFirstUidAnnotation() argument
275 if (mValues.empty() || annotationType != BOOL_TYPE || -1 == firstUidInChainIndex) { in parsePrimaryFieldFirstUidAnnotation()
290 void LogEvent::parseExclusiveStateAnnotation(uint8_t annotationType) { in parseExclusiveStateAnnotation() argument
291 if (mValues.empty() || annotationType != BOOL_TYPE) { in parseExclusiveStateAnnotation()
[all …]
DLogEvent.h231 void parseIsUidAnnotation(uint8_t annotationType);
232 void parseTruncateTimestampAnnotation(uint8_t annotationType);
233 void parsePrimaryFieldAnnotation(uint8_t annotationType);
234 void parsePrimaryFieldFirstUidAnnotation(uint8_t annotationType, int firstUidInChainIndex);
235 void parseExclusiveStateAnnotation(uint8_t annotationType);
236 void parseTriggerStateResetAnnotation(uint8_t annotationType);
237 void parseStateNestedAnnotation(uint8_t annotationType);
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiTestUtil.java51 if (annotation.annotationType().equals(org.junit.Test.class)) { in getTestMethod()