Lines Matching full:augmented

1048 	struct augmented_arg *augmented_arg = arg->augmented.args;  in btf_struct_scnprintf()
1055 if (arg == NULL || arg->augmented.args == NULL) in btf_struct_scnprintf()
1066 …if (btf_dump__dump_type_data(btf_dump, type_id, arg->augmented.args->value, type->size, &dump_data… in btf_struct_scnprintf()
1070 arg->augmented.args = ((void *)arg->augmented.args) + consumed; in btf_struct_scnprintf()
1071 arg->augmented.size -= consumed; in btf_struct_scnprintf()
1476 * after that is augmented stuff: pathname for openat, etc.
1814 struct augmented_arg *augmented_arg = arg->augmented.args; in syscall_arg__scnprintf_augmented_string()
1817 * So that the next arg with a payload can consume its augmented arg, i.e. for rename* syscalls in syscall_arg__scnprintf_augmented_string()
1822 arg->augmented.args = ((void *)arg->augmented.args) + consumed; in syscall_arg__scnprintf_augmented_string()
1823 arg->augmented.size -= consumed; in syscall_arg__scnprintf_augmented_string()
1833 if (arg->augmented.args) in syscall_arg__scnprintf_filename()
1848 struct augmented_arg *augmented_arg = arg->augmented.args; in syscall_arg__scnprintf_buf()
1863 arg->augmented.args = ((void *)arg->augmented.args) + consumed; in syscall_arg__scnprintf_buf()
1864 arg->augmented.size -= consumed; in syscall_arg__scnprintf_buf()
2414 .augmented = { in syscall__scnprintf_args()
2766 * will use the augmented args with stricter alignments like in in syscall__augmented_args()
2815 * this breaks syscall__augmented_args() check for augmented args, as we calculate in trace__sys_enter()
2819 * thinking that the extra 2 u64 args are the augmented filename, so just check in trace__sys_enter()
2820 * here and avoid using augmented syscalls when the evsel is the raw_syscalls one. in trace__sys_enter()
3196 .augmented = { in trace__fprintf_tp_fields()
5656 struct evsel *augmented = trace.syscalls.events.bpf_output; in cmd_trace() local
5657 if (evsel__init_augmented_syscall_tp(augmented, evsel) || in cmd_trace()
5658 evsel__init_augmented_syscall_tp_args(augmented)) in cmd_trace()
5661 * Augmented is __augmented_syscalls__ BPF_OUTPUT event in cmd_trace()
5665 augmented->handler = trace__sys_enter; in cmd_trace()