Home | History | Annotate | Download | only in pending

Lines Matching refs:line_start

67   char *start, *line_start, msg_buffer[16348]; //LOG_LINE_LENGTH - Ring buffer size
93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
95 used = strlen(line_start);
96 strcpy(msg_buffer, line_start);
101 if (*line_start == '<') { //we have new line to syslog
102 line_start++;
103 if (line_start) prio = (int)strtoul(line_start, &line_start, 10);
104 if (*line_start == '>') line_start++;
106 if (*line_start) syslog(prio, "%s", line_start);