Home | History | Annotate | Download | only in pppd

Lines Matching defs:line

532 static char line[256];		/* line to be logged accumulated here */
533 static char *linep; /* current pointer within line */
541 linep = line;
543 strlcpy(line, prefix, sizeof(line));
544 linep = line + strlen(line);
552 if (linep != line) {
554 log_write(llevel, line);
584 if (linep != line) {
586 if (linep + l < line + sizeof(line)) {
597 log_write(llevel, line);
598 linep = line;
608 /* assumes sizeof(buf) <= sizeof(line) */
611 memcpy(line, p, n);
612 linep = line + l;