| /kernel/trace/ |
| D | trace_export.c | 31 #define __field_struct(type, item) argument 34 #define __field(type, item) type item; argument 37 #define __field_desc(type, container, item) type item; argument 40 #define __array(type, item, size) type item[size]; argument 43 #define __array_desc(type, container, item, size) type item[size]; argument 46 #define __dynamic_array(type, item) type item[]; argument 75 #define __field(type, item) \ argument 84 #define __field_desc(type, container, item) \ argument 94 #define __array(type, item, len) \ argument 107 #define __array_desc(type, container, item, len) \ argument [all …]
|
| D | trace_probe.h | 54 #define DEFINE_FIELD(type, item, name, is_signed) \ argument 135 #define PRINT_TYPE_FUNC_NAME(type) print_type_##type argument 136 #define PRINT_TYPE_FMT_NAME(type) print_type_format_##type argument 139 #define DECLARE_BASIC_PRINT_TYPE_FUNC(type) \ argument 159 #define FETCH_FUNC_NAME(method, type) fetch_##method##_##type argument 162 #define DECLARE_FETCH_FUNC(method, type) \ argument 216 #define ASSIGN_FETCH_FUNC(method, type) \ argument 289 const struct fetch_type *type; /* Type of this argument */ member
|
| D | trace_probe.c | 39 #define DEFINE_BASIC_PRINT_TYPE_FUNC(tname, type, fmt) \ argument 89 #define DEFINE_FETCH_reg(type) \ argument 101 #define DEFINE_FETCH_retval(type) \ argument 121 #define DEFINE_FETCH_deref(type) \ argument 179 #define DEFINE_FETCH_bitfield(type) \ argument 247 static const struct fetch_type *find_fetch_type(const char *type, in find_fetch_type() 303 static fetch_func_t get_fetch_size_function(const struct fetch_type *type, in get_fetch_size_function()
|
| D | bpf_trace.c | 477 static bool kprobe_prog_is_valid_access(int off, int size, enum bpf_access_type type, in kprobe_prog_is_valid_access() 558 static bool tp_prog_is_valid_access(int off, int size, enum bpf_access_type type, in tp_prog_is_valid_access() 580 static bool pe_prog_is_valid_access(int off, int size, enum bpf_access_type type, in pe_prog_is_valid_access() 599 static u32 pe_prog_convert_ctx_access(enum bpf_access_type type, int dst_reg, in pe_prog_convert_ctx_access()
|
| D | trace_event_perf.c | 292 void perf_trace_buf_update(void *record, u16 type) in perf_trace_buf_update() 366 enum trace_reg type, void *data) in perf_ftrace_event_register()
|
| D | trace_syscalls.c | 200 #define SYSCALL_FIELD(type, field, name) \ argument 710 enum trace_reg type, void *data) in syscall_enter_register() 738 enum trace_reg type, void *data) in syscall_exit_register()
|
| D | trace_kprobe.c | 134 #define DEFINE_FETCH_stack(type) \ argument 148 #define DEFINE_FETCH_memory(type) \ argument 217 #define DEFINE_FETCH_symbol(type) \ argument 1208 enum trace_reg type, void *data) in kprobe_register()
|
| D | trace.h | 48 #define __field(type, item) type item; argument 51 #define __field_struct(type, item) __field(type, item) argument 54 #define __field_desc(type, container, item) argument 57 #define __array(type, item, size) type item[size]; argument 60 #define __array_desc(type, container, item, size) argument 63 #define __dynamic_array(type, item) type item[]; argument 296 #define FTRACE_CMP_TYPE(var, type) \ argument 1077 const char *type; member
|
| D | trace_uprobe.c | 110 #define DEFINE_FETCH_stack(type) \ argument 122 #define DEFINE_FETCH_memory(type) \ argument 186 #define DEFINE_FETCH_file_offset(type) \ argument 1182 trace_uprobe_register(struct trace_event_call *event, enum trace_reg type, in trace_uprobe_register()
|
| /kernel/bpf/ |
| D | inode.c | 30 static void *bpf_any_get(void *raw, enum bpf_type type) in bpf_any_get() 47 static void bpf_any_put(void *raw, enum bpf_type type) in bpf_any_put() 62 static void *bpf_fd_probe_obj(u32 ufd, enum bpf_type *type) in bpf_fd_probe_obj() 109 static int bpf_inode_type(const struct inode *inode, enum bpf_type *type) in bpf_inode_type() 163 enum bpf_type type = MINOR(devt); in bpf_mkobj() local 198 enum bpf_type type) in bpf_obj_do_pin() 235 enum bpf_type type; in bpf_obj_pin_user() local 258 enum bpf_type *type, int flags) in bpf_obj_do_get() 291 enum bpf_type type = BPF_TYPE_UNSPEC; in bpf_obj_get_user() local 325 static struct bpf_prog *__get_prog_inode(struct inode *inode, enum bpf_prog_type type) in __get_prog_inode() [all …]
|
| D | cgroup.c | 28 unsigned int type; in cgroup_bpf_put() local 47 unsigned int type; in cgroup_bpf_inherit() local 87 struct bpf_prog *prog, enum bpf_attach_type type, in __cgroup_bpf_update() 172 enum bpf_attach_type type) in __cgroup_bpf_run_filter()
|
| D | syscall.c | 619 static int find_prog_type(enum bpf_prog_type type, struct bpf_prog *prog) in find_prog_type() 745 static struct bpf_prog *__bpf_prog_get(u32 ufd, enum bpf_prog_type *type) in __bpf_prog_get() 769 struct bpf_prog *bpf_prog_get_type(u32 ufd, enum bpf_prog_type type) in bpf_prog_get_type() 780 enum bpf_prog_type type = attr->prog_type; in bpf_prog_load() local
|
| D | verifier.c | 523 static bool is_spillable_regtype(enum bpf_reg_type type) in is_spillable_regtype() 976 enum bpf_reg_type expected_type, type = reg->type; in check_func_arg() local 2175 enum bpf_reg_type type) in mark_map_reg() 2195 enum bpf_reg_type type) in mark_map_regs() 2371 static bool may_access_skb(enum bpf_prog_type type) in may_access_skb() 3338 enum bpf_access_type type; in convert_ctx_accesses() local
|
| /kernel/ |
| D | pid.c | 300 enum pid_type type; in alloc_pid() local 391 void attach_pid(struct task_struct *task, enum pid_type type) in attach_pid() 397 static void __change_pid(struct task_struct *task, enum pid_type type, in __change_pid() 417 void detach_pid(struct task_struct *task, enum pid_type type) in detach_pid() 422 void change_pid(struct task_struct *task, enum pid_type type, in change_pid() 431 enum pid_type type) in transfer_pid() 437 struct task_struct *pid_task(struct pid *pid, enum pid_type type) in pid_task() 466 struct pid *get_task_pid(struct task_struct *task, enum pid_type type) in get_task_pid() 478 struct task_struct *get_pid_task(struct pid *pid, enum pid_type type) in get_pid_task() 522 pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type, in __task_pid_nr_ns()
|
| D | profile.c | 167 int profile_event_register(enum profile_type type, struct notifier_block *n) in profile_event_register() 186 int profile_event_unregister(enum profile_type type, struct notifier_block *n) in profile_event_unregister() 282 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) in do_profile_hits() 383 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) in do_profile_hits() 391 void profile_hits(int type, void *__pc, unsigned int nr_hits) in profile_hits() 399 void profile_tick(int type) in profile_tick()
|
| D | kcmp.c | 34 static long kptr_obfuscate(long v, int type) in kptr_obfuscate() 45 static int kcmp_ptr(void *v1, void *v2, enum kcmp_type type) in kcmp_ptr() 97 SYSCALL_DEFINE5(kcmp, pid_t, pid1, pid_t, pid2, int, type, in SYSCALL_DEFINE5() argument
|
| D | ucount.c | 191 enum ucount_type type) in inc_ucount() 213 void dec_ucount(struct ucounts *ucounts, enum ucount_type type) in dec_ucount()
|
| D | kcov.c | 114 static void write_comp_data(u64 type, u64 arg1, u64 arg2, u64 ip) in write_comp_data() 204 u64 type = KCOV_CMP_CONST; in __sanitizer_cov_trace_switch() local
|
| D | audit.c | 558 struct sk_buff *audit_make_reply(__u32 portid, int seq, int type, int done, in audit_make_reply() 612 static void audit_send_reply(struct sk_buff *request_skb, int seq, int type, int done, in audit_send_reply() 1267 gfp_t gfp_mask, int type) in audit_buffer_alloc() 1376 int type) in audit_log_start() 2033 void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type, in audit_log()
|
| D | exit.c | 971 struct pid *task_pid_type(struct task_struct *task, enum pid_type type) in task_pid_type() 1598 enum pid_type type; in SYSCALL_DEFINE5() local 1667 enum pid_type type; in SYSCALL_DEFINE4() local
|
| /kernel/events/ |
| D | hw_breakpoint.c | 64 static struct bp_cpuinfo *get_bp_info(int cpu, enum bp_type_idx type) in get_bp_info() 100 static unsigned int max_task_bp_pinned(int cpu, enum bp_type_idx type) in max_task_bp_pinned() 117 static int task_bp_pinned(int cpu, struct perf_event *bp, enum bp_type_idx type) in task_bp_pinned() 146 enum bp_type_idx type) in fetch_bp_busy_slots() 185 enum bp_type_idx type, int weight) in toggle_bp_task_slot() 203 toggle_bp_slot(struct perf_event *bp, bool enable, enum bp_type_idx type, in toggle_bp_slot() 283 enum bp_type_idx type; in __reserve_bp_slot() local 329 enum bp_type_idx type; in __release_bp_slot() local
|
| /kernel/time/ |
| D | alarmtimer.c | 296 static void alarmtimer_freezerset(ktime_t absexp, enum alarmtimer_type type) in alarmtimer_freezerset() 317 void alarm_init(struct alarm *alarm, enum alarmtimer_type type, in alarm_init() 544 enum alarmtimer_type type; in alarm_timer_create() local 700 static int update_rmtp(ktime_t exp, enum alarmtimer_type type, in update_rmtp() 727 enum alarmtimer_type type = restart->nanosleep.clockid; in alarm_timer_nsleep_restart() local 768 enum alarmtimer_type type = clock2alarm(which_clock); in alarm_timer_nsleep() local
|
| /kernel/irq/ |
| D | chip.c | 70 int irq_set_irq_type(unsigned int irq, unsigned int type) in irq_set_irq_type() 832 unsigned int type = irqd_get_trigger_type(&desc->irq_data); in __irq_do_set_handler() local 1086 int irq_chip_set_type_parent(struct irq_data *data, unsigned int type) in irq_chip_set_type_parent()
|
| D | proc.c | 40 static int show_irq_affinity(int type, struct seq_file *m, void *v) in show_irq_affinity() 92 static ssize_t write_irq_affinity(int type, struct file *file, in write_irq_affinity()
|
| /kernel/gcov/ |
| D | gcc_3_4.c | 149 static int counter_active(struct gcov_info *info, unsigned int type) in counter_active() 339 unsigned int type; member
|