Home | History | Annotate | Download | only in logd

Lines Matching refs:elem

177     android_log_list_element elem;
182 elem = android_log_read_next(context);
183 switch ((int)elem.type) {
185 // elem at [0] is EVENT_TYPE_LIST, [1] is the timestamp, [2] is tag id.
187 mTagId = elem.data.int32;
194 FieldValue(Field(mTagId, pos, depth), Value((int32_t)elem.data.int32)));
205 mValues.push_back(FieldValue(Field(mTagId, pos, depth), Value(elem.data.float32)));
217 Value(string(elem.data.string, elem.len))));
224 mElapsedTimestampNs = elem.data.int64;
231 FieldValue(Field(mTagId, pos, depth), Value((int64_t)elem.data.int64)));
272 } while ((elem.type != EVENT_TYPE_UNKNOWN) && !elem.complete);