Lines Matching refs:textlen
1259 int textlen; in syslog_print_all() local
1261 textlen = msg_print_text(msg, prev, true, text, in syslog_print_all()
1263 if (textlen < 0) { in syslog_print_all()
1264 len = textlen; in syslog_print_all()
1272 if (copy_to_user(buf + len, text, textlen)) in syslog_print_all()
1275 len += textlen; in syslog_print_all()
1633 size_t textlen = 0; in cont_print_text() local
1637 textlen += print_time(cont.ts_nsec, text); in cont_print_text()
1638 size -= textlen; in cont_print_text()
1645 memcpy(text + textlen, cont.buf + cont.cons, len); in cont_print_text()
1646 textlen += len; in cont_print_text()
1652 text[textlen++] = '\n'; in cont_print_text()
1656 return textlen; in cont_print_text()