Lines Matching full:line
492 static char line[256]; /* line to be logged accumulated here */
493 static char *linep; /* current pointer within line */
501 linep = line;
503 ppp_strlcpy(line, prefix, sizeof(line));
504 linep = line + strlen(line);
512 if (linep != line) {
514 ppp_log_write(llevel, line);
535 if (linep != line) {
537 if (linep + l < line + sizeof(line)) {
548 ppp_log_write(llevel, line);
549 linep = line;
559 /* assumes sizeof(buf) <= sizeof(line) */
562 memcpy(line, p, n);
563 linep = line + l;