Lines Matching defs:touser
176 char *touser, *ptr;
182 touser = kzalloc(MBOX_HEXDUMP_MAX_LEN + 1, GFP_KERNEL);
183 if (!touser)
187 ret = snprintf(touser, 20, "<NO RX CAPABILITY>\n");
189 touser, ret);
220 MBOX_BYTES_PER_LINE, 1, touser + l,
225 *(touser + (l - 1)) = '\n';
227 *(touser + l) = '\0';
234 ret = simple_read_from_buffer(userbuf, count, ppos, touser, MBOX_HEXDUMP_MAX_LEN);
239 kfree(touser);