| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | Visitors.h | 35 enum ResultEnum { Interrupt, Advance, Skip } result; enumerator 42 : result(failed(result) ? Interrupt : Advance) {} in WalkResult() 45 WalkResult(Diagnostic &&) : result(Interrupt) {} in WalkResult() 46 WalkResult(InFlightDiagnostic &&) : result(Interrupt) {} in WalkResult() 50 static WalkResult interrupt() { return {Interrupt}; } in interrupt() 55 bool wasInterrupted() const { return result == Interrupt; } in wasInterrupted()
|
| /llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/ |
| H A D | GDBRemoteClientBaseTest.cpp | 185 ASSERT_FALSE(client.Interrupt(g_timeout)); in TEST_F() 195 std::launch::async, [&] { return client.Interrupt(g_timeout); }); in TEST_F() 219 std::launch::async, [&] { return client.Interrupt(g_timeout); }); in TEST_F() 242 ASSERT_FALSE(client.Interrupt(g_timeout)); in TEST_F() 252 std::launch::async, [&] { return client.Interrupt(g_timeout); }); in TEST_F() 334 std::launch::async, [&] { return client.Interrupt(g_timeout); }); in TEST_F()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | IOHandlerCursesGUI.h | 26 bool Interrupt() override;
|
| H A D | IOHandler.h | 84 virtual bool Interrupt() = 0; 372 bool Interrupt() override;
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | ElseAfterReturnCheck.cpp | 243 const auto *Interrupt = Result.Nodes.getNodeAs<Stmt>(InterruptingStr); in check() local 247 PPConditionals, *Result.SourceManager, Interrupt->getBeginLoc(), in check() 252 StringRef ControlFlowInterruptor = getControlFlowString(*Interrupt); in check()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPythonImpl.h | 37 bool Interrupt() override; 474 bool Interrupt() override { return m_python->Interrupt(); } in Interrupt() function
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | IOHandler.cpp | 601 bool IOHandlerEditline::Interrupt() { in Interrupt() function in IOHandlerEditline 608 return m_editline_up->Interrupt(); in Interrupt() 616 m_editline_up->Interrupt(); in GotEOF()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.h | 38 bool Interrupt(std::chrono::seconds interrupt_timeout);
|
| H A D | GDBRemoteClientBase.cpp | 173 bool GDBRemoteClientBase::Interrupt(std::chrono::seconds interrupt_timeout) { in Interrupt() function in GDBRemoteClientBase
|
| /llvm-project-15.0.7/llvm/lib/Target/RISCV/ |
| H A D | RISCVCallingConv.td | 30 // Interrupt handler needs to save/restore all registers that are used,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.h | 52 Status Interrupt() override;
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.h | 55 Status Interrupt() override;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/MSP430/ |
| H A D | interrupt.ll | 9 ; Interrupt functions must save all the registers that are used, even those
|
| /llvm-project-15.0.7/llvm/lib/Target/CSKY/ |
| H A D | CSKYCallingConv.td | 19 // Interrupt handler needs to save/restore all registers that are used,
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | Editline.h | 185 bool Interrupt();
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | NativeProcessWindows.h | 53 Status Interrupt() override;
|
| H A D | NativeProcessWindows.cpp | 194 Status NativeProcessWindows::Interrupt() { return Halt(); } in Interrupt() function in lldb_private::NativeProcessWindows
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeProcessLinux.h | 65 Status Interrupt() override;
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 82 virtual Status Interrupt();
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/ |
| H A D | MachProcess.h | 162 bool Interrupt();
|
| H A D | MachProcess.mm | 1484 bool MachProcess::Interrupt() { function 1492 "MachProcess::Interrupt() - sent %i signal to interrupt process", 1497 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Interrupt() - failed to " 1502 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Interrupt() - previously " 1508 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Interrupt() - process already " 2294 // 1 - We called MachProcess::Interrupt() but we stopped for another 2318 "MachProcess::Interrupt()",
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 155 virtual bool Interrupt() { return false; } in Interrupt() function
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Attr.td | 835 let Args = [EnumArgument<"Interrupt", "InterruptType", 839 let ParseKind = "Interrupt"; 847 let ParseKind = "Interrupt"; 1627 let ParseKind = "Interrupt"; 1645 let Args = [EnumArgument<"Interrupt", "InterruptType", 1652 let ParseKind = "Interrupt"; 1685 let ParseKind = "Interrupt"; 1830 let Args = [EnumArgument<"Interrupt", "InterruptType", 1834 let ParseKind = "Interrupt"; 3016 let ParseKind = "Interrupt";
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 33 lldb_private::Status NativeProcessProtocol::Interrupt() { in Interrupt() function in NativeProcessProtocol
|
| /llvm-project-15.0.7/libc/benchmarks/ |
| H A D | RATIONALE.md | 86 - [Interruptions](https://en.wikipedia.org/wiki/Interrupt#Processor_response)
|