Lines Matching refs:str
55 static int __init user_debug_setup(char *str) in user_debug_setup() argument
57 get_option(&str, &user_debug); in user_debug_setup()
96 static void dump_mem(const char *lvl, const char *str, unsigned long bottom, in dump_mem() argument
111 printk("%s%s(0x%08lx to 0x%08lx)\n", lvl, str, bottom, top); in dump_mem()
115 char str[sizeof(" 12345678") * 8 + 1]; in dump_mem() local
117 memset(str, ' ', sizeof(str)); in dump_mem()
118 str[sizeof(str) - 1] = '\0'; in dump_mem()
124 sprintf(str + i * 9, " %08lx", val); in dump_mem()
126 sprintf(str + i * 9, " ????????"); in dump_mem()
129 printk("%s%04lx:%s\n", lvl, first & 0xffff, str); in dump_mem()
141 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str; in dump_instr() local
168 printk("%sCode: %s\n", lvl, str); in dump_instr()
237 static int __die(const char *str, int err, struct pt_regs *regs) in __die() argument
244 str, err, ++die_counter); in __die()
247 ret = notify_die(DIE_OOPS, str, regs, err, tsk->thread.trap_no, SIGSEGV); in __die()
319 void die(const char *str, struct pt_regs *regs, int err) in die() argument
328 str = "Oops - BUG"; in die()
330 if (__die(str, err, regs)) in die()
336 void arm_notify_die(const char *str, struct pt_regs *regs, in arm_notify_die() argument
345 die(str, regs, err); in arm_notify_die()