Lines Matching refs:str
64 static void dump_mem(const char *lvl, const char *str, unsigned long bottom, in dump_mem() argument
80 lvl, str, bottom, top); in dump_mem()
84 char str[sizeof(" 12345678") * 8 + 1]; in dump_mem() local
86 memset(str, ' ', sizeof(str)); in dump_mem()
87 str[sizeof(str) - 1] = '\0'; in dump_mem()
93 sprintf(str + i * 9, " %08lx", val); in dump_mem()
95 sprintf(str + i * 9, " ????????"); in dump_mem()
98 printk(KERN_DEFAULT "%s%04lx:%s\n", lvl, first & 0xffff, str); in dump_mem()
109 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str; in dump_instr() local
133 printk(KERN_DEFAULT "%sCode: %s\n", lvl, str); in dump_instr()
179 static int __die(const char *str, int err, struct thread_info *thread, in __die() argument
187 str, err, ++die_counter); in __die()
190 ret = notify_die(DIE_OOPS, str, regs, err, tsk->thread.trap_no, \ in __die()
215 void die(const char *str, struct pt_regs *regs, int err) in die() argument
225 ret = __die(str, err, thread, regs); in die()
240 void uc32_notify_die(const char *str, struct pt_regs *regs, in uc32_notify_die() argument
249 die(str, regs, err); in uc32_notify_die()