Home | History | Annotate | Download | only in gdb

Lines Matching defs:lineptr

1645   const char *lineptr;
1679 lineptr = linebuffer;
1680 while (*lineptr)
1690 while (*lineptr && *lineptr != '\n')
1695 if (*lineptr == '\t')
1702 lineptr++;
1704 else if (*lineptr == '\033'
1705 && skip_ansi_escape (lineptr, &skip_bytes))
1707 m_wrap_buffer.append (lineptr, skip_bytes);
1710 lineptr += skip_bytes;
1712 else if (*lineptr == '\r')
1714 m_wrap_buffer.push_back (*lineptr);
1716 lineptr++;
1720 m_wrap_buffer.push_back (*lineptr);
1722 lineptr++;
1796 if (*lineptr == '\n')
1802 lineptr++;