Lines Matching defs:lost
1859 struct perf_record_lost_samples *lost,
1867 lost->lost = lost_count;
1873 id_hdr_size = perf_event__synthesize_id_sample((void *)(lost + 1),
1875 lost->header.size = sizeof(*lost) + id_hdr_size;
1876 lost->header.misc = misc_flag;
1877 record__write(rec, NULL, lost, lost->header.size);
1883 struct perf_record_lost_samples *lost;
1890 lost = zalloc(PERF_SAMPLE_MAX_SIZE);
1891 if (lost == NULL) {
1896 lost->header.type = PERF_RECORD_LOST_SAMPLES;
1919 if (count.lost) {
1920 __record__save_lost_samples(rec, evsel, lost,
1921 x, y, count.lost, 0);
1928 __record__save_lost_samples(rec, evsel, lost, 0, 0, lost_count,
1932 free(lost);