Home
last modified time | relevance | path

Searched refs:con (Results 1 – 3 of 3) sorted by relevance

/kernel/printk/
Dprintk.c1809 struct console *con; in call_console_drivers() local
1816 for_each_console(con) { in call_console_drivers()
1817 if (exclusive_console && con != exclusive_console) in call_console_drivers()
1819 if (!(con->flags & CON_ENABLED)) in call_console_drivers()
1821 if (!con->write) in call_console_drivers()
1824 !(con->flags & CON_ANYTIME)) in call_console_drivers()
1826 if (con->flags & CON_EXTENDED) in call_console_drivers()
1827 con->write(con, ext_text, ext_len); in call_console_drivers()
1829 con->write(con, text, len); in call_console_drivers()
2380 struct console *con; in have_callable_console() local
[all …]
/kernel/events/
Duprobes.c781 struct uprobe_consumer **con; in consumer_del() local
785 for (con = &uprobe->consumers; *con; con = &(*con)->next) { in consumer_del()
786 if (*con == uc) { in consumer_del()
787 *con = uc->next; in consumer_del()
1226 struct uprobe_consumer *con; in uprobe_apply() local
1234 for (con = uprobe->consumers; con && con != uc ; con = con->next) in uprobe_apply()
1236 if (con) in uprobe_apply()
/kernel/trace/
Dtrace_uprobe.c98 static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs);
99 static int uretprobe_dispatcher(struct uprobe_consumer *con,
1462 static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs) in uprobe_dispatcher() argument
1471 tu = container_of(con, struct trace_uprobe, consumer); in uprobe_dispatcher()
1499 static int uretprobe_dispatcher(struct uprobe_consumer *con, in uretprobe_dispatcher() argument
1507 tu = container_of(con, struct trace_uprobe, consumer); in uretprobe_dispatcher()