Home
last modified time | relevance | path

Searched refs:Signals (Results 1 – 25 of 67) sorted by relevance

123

/external/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/
DSymbolInfo.h53 struct Signals { struct
54 Signals() {} in Signals() function
55 Signals(unsigned Seen, unsigned Used) : Seen(Seen), Used(Used) {} in Signals() argument
63 Signals &operator+=(const Signals &RHS); argument
64 Signals operator+(const Signals &RHS) const;
65 bool operator==(const Signals &RHS) const;
68 using SignalMap = std::map<SymbolInfo, Signals>;
128 SymbolInfo::Signals Signals;
DSymbolInfo.cpp34 io.mapRequired("Seen", Symbol.Signals.Seen); in mapping()
35 io.mapRequired("Used", Symbol.Signals.Used); in mapping()
98 SymbolInfo::Signals &SymbolInfo::Signals::operator+=(const Signals &RHS) { in operator +=()
104 SymbolInfo::Signals SymbolInfo::Signals::operator+(const Signals &RHS) const { in operator +()
105 Signals Result = *this; in operator +()
110 bool SymbolInfo::Signals::operator==(const Signals &RHS) const { in operator ==()
115 return std::tie(Symbol, Signals) == std::tie(RHS.Symbol, RHS.Signals); in operator ==()
DFindAllSymbols.cpp243 SymbolInfo::Signals Signals; in run() local
246 Signals.Used = 1; in run()
248 Signals.Seen = 1; in run()
256 FileSymbols[*Symbol] += Signals; in run()
/external/llvm-project/clang-tools-extra/unittests/clang-include-fixer/
DIncludeFixerTest.cpp59 SymbolInfo::Signals{}}, in runIncludeFixer()
62 SymbolInfo::Signals{}}, in runIncludeFixer()
67 SymbolInfo::Signals{}}, in runIncludeFixer()
71 SymbolInfo::Signals{}}, in runIncludeFixer()
75 SymbolInfo::Signals{}}, in runIncludeFixer()
80 SymbolInfo::Signals{}}, in runIncludeFixer()
84 SymbolInfo::Signals{/*Seen=*/2, 0}}, in runIncludeFixer()
87 SymbolInfo::Signals{/*Seen=*/2, 0}}, in runIncludeFixer()
90 SymbolInfo::Signals{}}, in runIncludeFixer()
92 SymbolInfo::Signals{}}, in runIncludeFixer()
[all …]
/external/python/cpython3/Lib/
Dsignal.py61 return set(_int_to_enum(x, Signals) for x in sigs_set)
68 return {_int_to_enum(x, Signals) for x in _signal.sigpending()}
75 return _int_to_enum(retsig, Signals)
82 return {_int_to_enum(x, Signals) for x in _signal.valid_signals()}
/external/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/
DFindAllSymbolsMain.cpp86 Symbols[Symbol.Symbol] += Symbol.Signals; in Merge()
107 Symbol.Signals.Seen = std::min(Symbol.Signals.Seen, 1u); in Merge()
108 Symbol.Signals.Used = std::min(Symbol.Signals.Used, 1u); in Merge()
/external/llvm/lib/Support/
DCrashRecoveryContext.cpp244 static const int Signals[] = variable
246 static const unsigned NumSignals = array_lengthof(Signals);
296 sigaction(Signals[i], &Handler, &PrevActions[i]); in Enable()
310 sigaction(Signals[i], &PrevActions[i], nullptr); in Disable()
DCMakeLists.txt122 Signals.cpp
/external/rust/crates/crossbeam-channel/examples/
Dstopwatch.rs15 use signal_hook::iterator::Signals; in main()
21 let signals = Signals::new(&[SIGINT])?; in main()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DCrashRecoveryContext.cpp340 static const int Signals[] = variable
342 static const unsigned NumSignals = array_lengthof(Signals);
393 sigaction(Signals[i], &Handler, &PrevActions[i]); in installExceptionOrSignalHandlers()
400 sigaction(Signals[i], &PrevActions[i], nullptr); in uninstallExceptionOrSignalHandlers()
/external/llvm-project/llvm/lib/Support/
DCrashRecoveryContext.cpp345 static const int Signals[] = variable
347 static const unsigned NumSignals = array_lengthof(Signals);
399 sigaction(Signals[i], &Handler, &PrevActions[i]); in installExceptionOrSignalHandlers()
406 sigaction(Signals[i], &PrevActions[i], nullptr); in uninstallExceptionOrSignalHandlers()
/external/linux-kselftest/tools/testing/selftests/arm64/signal/
DREADME4 Signals Tests
24 - Signals' test-cases hereafter defined belong currently to two
/external/python/cpython3/Lib/test/
Dtest_signal.py29 self.assertIsInstance(sig, signal.Signals)
31 self.assertIsInstance(sig, signal.Signals)
74 self.assertIn(signal.Signals.SIGINT, s)
75 self.assertIn(signal.Signals.SIGALRM, s)
104 self.assertIn(signal.Signals.SIGINT, s)
/external/llvm-project/llvm/test/BugPoint/
Dunsymbolized.ll17 ; CRASH-NOT: Signals.inc
/external/libchrome/mojo/public/cpp/system/
DREADME.md170 ## Signals & Traps
174 [Signals & Traps](/mojo/public/c/system/README.md#Signals-Traps).
176 ### Querying Signals
212 [low-level traps API](/mojo/public/c/system/README.md#Signals-Traps)
280 [low-level traps API](/mojo/public/c/system/README.md#Signals-Traps)
/external/llvm-project/lldb/unittests/
DCMakeLists.txt88 add_subdirectory(Signals)
/external/llvm-project/clang-tools-extra/clang-include-fixer/
DSymbolIndexManager.cpp55 (1.0 + std::log2(1 + Symbol.Signals.Seen)); in rank()
/external/llvm/lib/Support/Unix/
DSignals.inc1 //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
73 // IntSigs - Signals that represent requested termination. There's no bug
80 // KillSigs - Signals that represent that we have a bug, and our prompt
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DSignals.inc1 //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
71 // IntSigs - Signals that represent requested termination. There's no bug
78 // KillSigs - Signals that represent that we have a bug, and our prompt
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DSignals.inc1 //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
208 /// Signals that represent requested termination. There's no bug or failure, or
215 /// Signals that represent that we have a bug, and our prompt termination has
233 /// Signals that represent requests for status.
/external/llvm-project/llvm/lib/Support/Unix/
DSignals.inc1 //===- Signals.cpp - Generic Unix Signals Implementation -----*- C++ -*-===//
208 /// Signals that represent requested termination. There's no bug or failure, or
215 /// Signals that represent that we have a bug, and our prompt termination has
233 /// Signals that represent requests for status.
/external/ltp/testcases/open_posix_testsuite/
DQUICK-START17 (Signals, Semaphores, Threads, Timers or Message Queues).
/external/libchrome/mojo/public/c/system/
DREADME.md69 (see [Signals & Traps](#Signals-Traps) below), or a process invitation (see
130 described in the [Signals & Traps](#Signals-Traps) section below.
227 [Signals & Traps](#Signals-Traps) below for more information.
585 ## Signals & Traps
593 ### Signals subsection
655 ### Trapping Signals
/external/ltp/testcases/open_posix_testsuite/Documentation/
DCOVERAGE.signals1 Coverage-Area: Signals
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
Dtemplate_19-1.in20 * If SA_SIGINFO is set in sa_flags and Real Time Signals extension is supported,

123