Home | History | Annotate | Download | only in quipper

Lines Matching refs:read_format

43 void ReadReadInfo(DataReader* reader, uint64_t read_format,
46 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
48 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
50 if (read_format & PERF_FORMAT_ID) reader->ReadUint64(&sample->read.one.id);
55 void ReadGroupReadInfo(DataReader* reader, uint64_t read_format,
59 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
61 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
70 if (read_format & PERF_FORMAT_ID) reader->ReadUint64(&values[i].id);
241 // { struct read_format values; } && PERF_SAMPLE_READ
243 if (attr.read_format & PERF_FORMAT_GROUP)
244 ReadGroupReadInfo(&reader, attr.read_format, sample);
246 ReadReadInfo(&reader, attr.read_format, sample);
420 // { struct read_format values; } && PERF_SAMPLE_READ
422 if (attr.read_format & PERF_FORMAT_GROUP) {
424 if (attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
426 if (attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
430 if (attr.read_format & PERF_FORMAT_ID) *array++ = sample.read.one.id;
434 if (attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
436 if (attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
438 if (attr.read_format & PERF_FORMAT_ID) *array++ = sample.read.one.id;