Symbol: context_switch
drivers/accel/habanalabs/common/command_submission.c
1704
rc = hdev->asic_funcs->context_switch(hdev, ctx->asid);
drivers/accel/habanalabs/common/habanalabs.h
1690
int (*context_switch)(struct hl_device *hdev, u32 asid);
drivers/accel/habanalabs/gaudi/gaudi.c
9160
.context_switch = gaudi_context_switch,
drivers/accel/habanalabs/gaudi2/gaudi2.c
11935
.context_switch = gaudi2_context_switch,
drivers/accel/habanalabs/goya/goya.c
5461
.context_switch = goya_context_switch,
include/uapi/linux/perf_event.h
455
context_switch : 1, /* context switch data */
kernel/events/core.c
10077
return event->attr.context_switch;
kernel/events/core.c
13295
if (event->attr.context_switch) {
kernel/events/core.c
5336
attr->context_switch || attr->text_poke ||
kernel/events/core.c
5625
if (event->attr.context_switch) {
kernel/sched/core.c
7234
rq = context_switch(rq, prev, next, &rf);
kernel/trace/trace_entries.h
179
FTRACE_ENTRY(context_switch, ctx_switch_entry,
tools/include/uapi/linux/perf_event.h
455
context_switch : 1, /* context switch data */
tools/lib/perf/include/perf/event.h
628
struct perf_record_switch context_switch;
tools/perf/arch/arm64/util/arm-spe.c
386
tracking_evsel->core.attr.context_switch = 1;
tools/perf/arch/x86/util/intel-pt.c
808
switch_evsel->core.attr.context_switch = 1;
tools/perf/builtin-inject.c
1654
gs->tool.context_switch = guest_session__repipe;
tools/perf/builtin-inject.c
2111
u32 pid = event->context_switch.next_prev_pid;
tools/perf/builtin-inject.c
2112
u32 tid = event->context_switch.next_prev_tid;
tools/perf/builtin-inject.c
2170
inject->tool.context_switch = perf_event__drop;
tools/perf/builtin-inject.c
2501
inject->tool.context_switch = host__repipe;
tools/perf/builtin-inject.c
2513
inject->tool.context_switch = host__context_switch;
tools/perf/builtin-inject.c
2833
inject.tool.context_switch = perf_event__repipe;
tools/perf/builtin-report.c
1609
report.tool.context_switch = perf_event__process_switch;
tools/perf/builtin-script.c
3227
script->tool.context_switch = process_switch_event;
tools/perf/util/arm-spe.c
1431
pid = event->context_switch.next_prev_pid;
tools/perf/util/arm-spe.c
1432
tid = event->context_switch.next_prev_tid;
tools/perf/util/cs-etm.c
2880
event->context_switch.next_prev_pid,
tools/perf/util/cs-etm.c
2881
event->context_switch.next_prev_tid);
tools/perf/util/db-export.c
580
pid_t pid = event->context_switch.next_prev_pid;
tools/perf/util/db-export.c
581
pid_t tid = event->context_switch.next_prev_tid;
tools/perf/util/event.c
492
event->context_switch.next_prev_pid,
tools/perf/util/event.c
493
event->context_switch.next_prev_tid);
tools/perf/util/evsel.c
1728
attr->context_switch = track;
tools/perf/util/evsel.c
179
WRITE_ASS(context_switch, "d");
tools/perf/util/intel-pt.c
3549
pid = event->context_switch.next_prev_pid;
tools/perf/util/intel-pt.c
3550
tid = event->context_switch.next_prev_tid;
tools/perf/util/intel-pt.c
4221
if (evsel->core.attr.context_switch)
tools/perf/util/perf_api_probe.c
105
evsel->core.attr.context_switch = 1;
tools/perf/util/perf_event_attr_fprintf.c
373
PRINT_ATTRf_bf(context_switch, p_unsigned);
tools/perf/util/python.c
1017
&mmap, &context_switch, &comm, &freq, &inherit_stat,
tools/perf/util/python.c
1041
attr.context_switch = context_switch;
tools/perf/util/python.c
405
pevent->event.context_switch.next_prev_pid,
tools/perf/util/python.c
406
pevent->event.context_switch.next_prev_tid,
tools/perf/util/python.c
998
context_switch = 0,
tools/perf/util/scripting-engines/trace-event-python.c
1565
np_pid = event->context_switch.next_prev_pid;
tools/perf/util/scripting-engines/trace-event-python.c
1566
np_tid = event->context_switch.next_prev_tid;
tools/perf/util/scripting-engines/trace-event-python.c
1901
SET_TABLE_HANDLER(context_switch);
tools/perf/util/session.c
2079
return tool->context_switch(tool, event, sample, machine);
tools/perf/util/session.c
3767
if (evsel->core.attr.context_switch)
tools/perf/util/session.c
442
event->context_switch.next_prev_pid =
tools/perf/util/session.c
443
bswap_32(event->context_switch.next_prev_pid);
tools/perf/util/session.c
444
event->context_switch.next_prev_tid =
tools/perf/util/session.c
445
bswap_32(event->context_switch.next_prev_tid);
tools/perf/util/session.c
457
swap_sample_id_all(event, &event->context_switch + 1);
tools/perf/util/tool.c
350
tool->context_switch = perf_event__process_switch;
tools/perf/util/tool.c
448
CREATE_DELEGATE_OP(context_switch);
tools/perf/util/tool.c
540
tool->tool.context_switch = delegate_context_switch;
tools/perf/util/tool.h
60
context_switch,
tools/testing/selftests/perf_events/watermark_signal.c
61
attr.context_switch = 1;