Lines Matching defs:interrupted
349 bool IOHandlerEditline::GetLine(std::string &line, bool &interrupted) {
352 return m_editline_up->GetLine(line, interrupted);
409 // interrupted in the fgets. So pressing ctrl-c causes the repl to end
531 bool IOHandlerEditline::GetLines(StringList &lines, bool &interrupted) {
537 return m_editline_up->GetLines(m_base_line_number, lines, interrupted);
556 bool interrupted = false;
557 if (GetLine(line, interrupted) && !interrupted) {
576 bool interrupted = false;
579 if (GetLines(lines, interrupted)) {
580 if (interrupted) {
592 if (GetLine(line, interrupted)) {
593 if (interrupted)