Home
last modified time | relevance | path

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

/aosp12/packages/modules/StatsD/statsd/src/logd/
H A DLogEvent.h221 void parseInt32(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
222 void parseInt64(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
223 void parseString(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
224 void parseFloat(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
225 void parseBool(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
226 void parseByteArray(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
227 void parseKeyValuePairs(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
228 void parseAttributionChain(int32_t* pos, int32_t depth, bool* last, uint8_t numAnnotations);
230 void parseAnnotations(uint8_t numAnnotations, int firstUidInChainIndex = -1);
H A DLogEvent.cpp112 parseAnnotations(numAnnotations); in parseInt32()
118 parseAnnotations(numAnnotations); in parseInt64()
132 parseAnnotations(numAnnotations); in parseString()
138 parseAnnotations(numAnnotations); in parseFloat()
145 parseAnnotations(numAnnotations); in parseBool()
159 parseAnnotations(numAnnotations); in parseByteArray()
198 parseAnnotations(numAnnotations); in parseKeyValuePairs()
205 uint8_t numAnnotations) { in parseAttributionChain() argument
230 parseAnnotations(numAnnotations, firstUidInChainIndex); in parseAttributionChain()
328 void LogEvent::parseAnnotations(uint8_t numAnnotations, int firstUidInChainIndex) { in parseAnnotations() argument
[all …]
/aosp12/packages/modules/StatsD/lib/libstatssocket/tests/
H A Dstats_event_test.cpp66 void checkTypeHeader(uint8_t** buffer, uint8_t typeId, uint8_t numAnnotations = 0) { in checkTypeHeader() argument
67 uint8_t typeHeader = (numAnnotations << 4) | typeId; in checkTypeHeader()
/aosp12/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/
H A DGrantPermissionsActivity.java293 int numAnnotations = annotations.length; in showNextRequest() local
294 for (int i = 0; i < numAnnotations; i++) { in showNextRequest()