Searched refs:con (Results 1 – 3 of 3) sorted by relevance
/kernel/events/ |
D | uprobes.c | 522 struct uprobe_consumer **con; in consumer_del() local 526 for (con = &uprobe->consumers; *con; con = &(*con)->next) { in consumer_del() 527 if (*con == uc) { in consumer_del() 528 *con = uc->next; in consumer_del() 928 struct uprobe_consumer *con; in uprobe_apply() local 936 for (con = uprobe->consumers; con && con != uc ; con = con->next) in uprobe_apply() 938 if (con) in uprobe_apply()
|
/kernel/printk/ |
D | printk.c | 1402 struct console *con; in call_console_drivers() local 1411 for_each_console(con) { in call_console_drivers() 1412 if (exclusive_console && con != exclusive_console) in call_console_drivers() 1414 if (!(con->flags & CON_ENABLED)) in call_console_drivers() 1416 if (!con->write) in call_console_drivers() 1419 !(con->flags & CON_ANYTIME)) in call_console_drivers() 1421 con->write(con, text, len); in call_console_drivers() 1453 struct console *con; in have_callable_console() local 1455 for_each_console(con) in have_callable_console() 1456 if (con->flags & CON_ANYTIME) in have_callable_console() [all …]
|
/kernel/trace/ |
D | trace_uprobe.c | 78 static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs); 79 static int uretprobe_dispatcher(struct uprobe_consumer *con, 1200 static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs) in uprobe_dispatcher() argument 1209 tu = container_of(con, struct trace_uprobe, consumer); in uprobe_dispatcher() 1237 static int uretprobe_dispatcher(struct uprobe_consumer *con, in uretprobe_dispatcher() argument 1245 tu = container_of(con, struct trace_uprobe, consumer); in uretprobe_dispatcher()
|