Home
last modified time | relevance | path

Searched refs:interrupted (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project-15.0.7/mlir/test/IR/
H A Dgeneric-visitors-interrupt.mlir3 // Walk is interrupted before visiting "foo"
12 // CHECK: step 2 walk was interrupted
16 // Walk is interrupted after visiting "foo" (which has a single empty region)
27 // CHECK: step 4 walk was interrupted
31 // Walk is interrupted after visiting "foo"'s 1st region.
46 // CHECK: step 4 walk was interrupted
68 // CHECK: step 7 walk was interrupted
71 // CHECK: step 10 walk was interrupted
90 // CHECK: step 5 walk was interrupted
92 // CHECK: step 7 walk was interrupted
H A Dgeneric-region-visitors-interrupt.mlir9 // CHECK: step 0 walk was interrupted
H A Dgeneric-block-visitors-interrupt.mlir9 // CHECK: step 0 walk was interrupted
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandler.cpp354 bool IOHandlerEditline::GetLine(std::string &line, bool &interrupted) { in GetLine() argument
357 bool b = m_editline_up->GetLine(line, interrupted); in GetLine()
521 bool IOHandlerEditline::GetLines(StringList &lines, bool &interrupted) { in GetLines() argument
527 return m_editline_up->GetLines(m_base_line_number, lines, interrupted); in GetLines()
546 bool interrupted = false; in GetLines() local
547 if (GetLine(line, interrupted) && !interrupted) { in GetLines()
566 bool interrupted = false; in Run() local
569 if (GetLines(lines, interrupted)) { in Run()
570 if (interrupted) { in Run()
582 if (GetLine(line, interrupted)) { in Run()
[all …]
/llvm-project-15.0.7/lldb/unittests/Editline/
H A DEditlineTest.cpp76 bool GetLine(std::string &line, bool &interrupted, size_t timeout_millis);
78 bool GetLines(lldb_private::StringList &lines, bool &interrupted,
168 bool EditlineAdapter::GetLine(std::string &line, bool &interrupted, in GetLine() argument
174 _editline_sp->GetLine(line, interrupted); in GetLine()
179 bool &interrupted, size_t /* timeout_millis */) { in GetLines() argument
184 _editline_sp->GetLines(1, lines, interrupted); in GetLines()
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A Ddisplay.py67 def clear(self, interrupted): pass argument
94 self.progress_bar.clear(interrupted=False)
103 def clear(self, interrupted): argument
105 self.progress_bar.clear(interrupted)
H A DProgressBar.py204 def clear(self, interrupted): argument
205 if self.atIndex is not None and not interrupted:
278 def clear(self, interrupted): argument
283 if interrupted: # ^C creates extra line. Gobble it up!
H A Dmain.py226 interrupted = False
231 interrupted = True
238 display.clear(interrupted)
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DErrc.h51 interrupted = int(std::errc::interrupted), enumerator
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DEditline.h223 bool GetLine(std::string &line, bool &interrupted);
226 bool GetLines(int first_line_number, StringList &lines, bool &interrupted);
/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A Dsigint.test15 CHECK: libFuzzer: run interrupted; exiting
/llvm-project-15.0.7/libcxx/include/
H A D__errc48 interrupted, // EINTR
145 interrupted = EINTR,
/llvm-project-15.0.7/lldb/source/Host/common/
H A DEditline.cpp1501 bool Editline::GetLine(std::string &line, bool &interrupted) { in GetLine() argument
1511 interrupted = true; in GetLine()
1523 interrupted = m_editor_status == EditorStatus::Interrupted; in GetLine()
1524 if (!interrupted) { in GetLine()
1542 bool &interrupted) { in GetLines() argument
1568 interrupted = m_editor_status == EditorStatus::Interrupted; in GetLines()
1569 if (!interrupted) { in GetLines()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/android/
H A Dcomparison-in-temp-failure-retry.rst14 until it either succeeds, or fails for reasons other than being interrupted.
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandler.h404 bool GetLine(std::string &line, bool &interrupted);
406 bool GetLines(StringList &lines, bool &interrupted);
/llvm-project-15.0.7/libcxx/test/std/diagnostics/syserr/
H A Derrc.pass.cpp46 static_assert(static_cast<int>(std::errc::interrupted) == EINTR, ""); in main()
/llvm-project-15.0.7/llvm/lib/Support/
H A DErrorHandling.cpp297 MAP_ERR_TO_COND(WSAEINTR, interrupted); in mapWindowsError()
/llvm-project-15.0.7/mlir/docs/Tools/
H A Dmlir-reduce.md124 * Produce the optimal result when interrupted. The reduction process may take
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dldrd.ll23 ; register when interrupted or faulted.
/llvm-project-15.0.7/llvm/docs/
H A DSupportLibrary.rst162 disk sector", or "system call interrupted". We'll call the first group "*soft*"
H A DSymbolizerMarkupFormat.rst244 that represent a precise interrupted code location rather than a return
/llvm-project-15.0.7/lldb/docs/use/
H A Dformatting.rst143 … | The expression result for a thread that just finished an interrupted expression eval…
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.mm825 "interrupted, but task still valid, continuing...");
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dlit.rst381 could not be run, the test itself is invalid, or the test was interrupted.
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dassume.ll339 ; interrupted by an exception being thrown

12