Symbol: auxtrace_index
tools/perf/builtin-inject.c
2541
auxtrace_index__free(&session->auxtrace_index);
tools/perf/builtin-inject.c
352
ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
tools/perf/builtin-record.c
752
err = auxtrace_index__auxtrace_event(&rec->session->auxtrace_index,
tools/perf/util/auxtrace.c
1007
struct auxtrace_index *auxtrace_index;
tools/perf/util/auxtrace.c
1011
list_for_each_entry(auxtrace_index, head, list)
tools/perf/util/auxtrace.c
1012
total += auxtrace_index->nr;
tools/perf/util/auxtrace.c
1017
list_for_each_entry(auxtrace_index, head, list) {
tools/perf/util/auxtrace.c
1018
err = auxtrace_index__do_write(fd, auxtrace_index);
tools/perf/util/auxtrace.c
1029
struct auxtrace_index *auxtrace_index;
tools/perf/util/auxtrace.c
1036
auxtrace_index = auxtrace_index__last(head);
tools/perf/util/auxtrace.c
1037
if (!auxtrace_index)
tools/perf/util/auxtrace.c
1040
nr = auxtrace_index->nr;
tools/perf/util/auxtrace.c
1042
auxtrace_index->entries[nr].file_offset =
tools/perf/util/auxtrace.c
1044
auxtrace_index->entries[nr].sz = bswap_64(ent.sz);
tools/perf/util/auxtrace.c
1046
auxtrace_index->entries[nr].file_offset = ent.file_offset;
tools/perf/util/auxtrace.c
1047
auxtrace_index->entries[nr].sz = ent.sz;
tools/perf/util/auxtrace.c
1050
auxtrace_index->nr = nr + 1;
tools/perf/util/auxtrace.c
1058
struct list_head *head = &session->auxtrace_index;
tools/perf/util/auxtrace.c
1092
struct auxtrace_index *auxtrace_index;
tools/perf/util/auxtrace.c
1100
list_for_each_entry(auxtrace_index, &session->auxtrace_index, list) {
tools/perf/util/auxtrace.c
1101
for (i = 0; i < auxtrace_index->nr; i++) {
tools/perf/util/auxtrace.c
1102
ent = &auxtrace_index->entries[i];
tools/perf/util/auxtrace.c
924
struct auxtrace_index *auxtrace_index;
tools/perf/util/auxtrace.c
926
auxtrace_index = malloc(sizeof(struct auxtrace_index));
tools/perf/util/auxtrace.c
927
if (!auxtrace_index)
tools/perf/util/auxtrace.c
930
auxtrace_index->nr = 0;
tools/perf/util/auxtrace.c
931
INIT_LIST_HEAD(&auxtrace_index->list);
tools/perf/util/auxtrace.c
933
list_add_tail(&auxtrace_index->list, head);
tools/perf/util/auxtrace.c
940
struct auxtrace_index *auxtrace_index, *n;
tools/perf/util/auxtrace.c
942
list_for_each_entry_safe(auxtrace_index, n, head, list) {
tools/perf/util/auxtrace.c
943
list_del_init(&auxtrace_index->list);
tools/perf/util/auxtrace.c
944
free(auxtrace_index);
tools/perf/util/auxtrace.c
948
static struct auxtrace_index *auxtrace_index__last(struct list_head *head)
tools/perf/util/auxtrace.c
950
struct auxtrace_index *auxtrace_index;
tools/perf/util/auxtrace.c
959
auxtrace_index = list_entry(head->prev, struct auxtrace_index, list);
tools/perf/util/auxtrace.c
961
if (auxtrace_index->nr >= PERF_AUXTRACE_INDEX_ENTRY_COUNT) {
tools/perf/util/auxtrace.c
965
auxtrace_index = list_entry(head->prev, struct auxtrace_index,
tools/perf/util/auxtrace.c
969
return auxtrace_index;
tools/perf/util/auxtrace.c
975
struct auxtrace_index *auxtrace_index;
tools/perf/util/auxtrace.c
978
auxtrace_index = auxtrace_index__last(head);
tools/perf/util/auxtrace.c
979
if (!auxtrace_index)
tools/perf/util/auxtrace.c
982
nr = auxtrace_index->nr;
tools/perf/util/auxtrace.c
983
auxtrace_index->entries[nr].file_offset = file_offset;
tools/perf/util/auxtrace.c
984
auxtrace_index->entries[nr].sz = event->header.size;
tools/perf/util/auxtrace.c
985
auxtrace_index->nr += 1;
tools/perf/util/auxtrace.c
991
struct auxtrace_index *auxtrace_index)
tools/perf/util/auxtrace.c
996
for (i = 0; i < auxtrace_index->nr; i++) {
tools/perf/util/auxtrace.c
997
ent.file_offset = auxtrace_index->entries[i].file_offset;
tools/perf/util/auxtrace.c
998
ent.sz = auxtrace_index->entries[i].sz;
tools/perf/util/cs-etm.c
3216
struct auxtrace_index *auxtrace_index;
tools/perf/util/cs-etm.c
3246
list_for_each_entry(auxtrace_index, &session->auxtrace_index, list) {
tools/perf/util/cs-etm.c
3247
for (i = 0; i < auxtrace_index->nr; i++) {
tools/perf/util/cs-etm.c
3248
ent = &auxtrace_index->entries[i];
tools/perf/util/cs-etm.c
3274
struct auxtrace_index *index = list_first_entry_or_null(&session->auxtrace_index,
tools/perf/util/cs-etm.c
3275
struct auxtrace_index, list);
tools/perf/util/header.c
1018
err = auxtrace_index__write(ff->fd, &session->auxtrace_index);
tools/perf/util/intel-pt.c
4718
if (pt->sampling_mode || list_empty(&session->auxtrace_index))
tools/perf/util/session.c
162
INIT_LIST_HEAD(&session->auxtrace_index);
tools/perf/util/session.c
260
auxtrace_index__free(&session->auxtrace_index);
tools/perf/util/session.h
55
struct list_head auxtrace_index;