HomeSort by relevance Sort by last modified time
    Searched defs:Signals (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 233 // This implementation relies on synchronous signals being delivered to the
244 static const int Signals[] =
246 static const unsigned NumSignals = array_lengthof(Signals);
296 sigaction(Signals[i], &Handler, &PrevActions[i]);
310 sigaction(Signals[i], &PrevActions[i], nullptr);
  /external/swiftshader/third_party/LLVM/lib/Support/
CrashRecoveryContext.cpp 216 // This implementation relies on synchronous signals being delivered to the
227 static int Signals[] = { SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGSEGV, SIGTRAP };
228 static const unsigned NumSignals = sizeof(Signals) / sizeof(Signals[0]);
279 sigaction(Signals[i], &Handler, &PrevActions[i]);
295 sigaction(Signals[i], &PrevActions[i], 0);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
CrashRecoveryContext.cpp 279 // This implementation relies on synchronous signals being delivered to the
290 static const int Signals[] =
292 static const unsigned NumSignals = array_lengthof(Signals);
335 sigaction(Signals[i], &Handler, &PrevActions[i]);
342 sigaction(Signals[i], &PrevActions[i], nullptr);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_decimal.py 43 Signals = tuple(getcontext().flags.keys())
45 # Signals ordered with respect to precedence: when an operation
46 # produces multiple signals, signals occurring later in the list
59 traps = dict.fromkeys(Signals, 0)
308 for exception in Signals:
330 except Signals, e:
350 except Signals, e:
365 except Signals, e:
381 except Signals, error:
    [all...]
  /external/python/cpython2/Lib/test/
test_decimal.py 44 Signals = tuple(getcontext().flags.keys())
46 # Signals ordered with respect to precedence: when an operation
47 # produces multiple signals, signals occurring later in the list
60 traps = dict.fromkeys(Signals, 0)
307 for exception in Signals:
329 except Signals, e:
349 except Signals, e:
364 except Signals, e:
380 except Signals, error
    [all...]
  /external/python/cpython3/Lib/test/
test_decimal.py 58 Signals = {
62 # Signals ordered with respect to precedence: when an operation
63 # produces multiple signals, signals occurring later in the list
101 prec=9, rounding=ROUND_HALF_EVEN, traps=dict.fromkeys(Signals[m], 0)
369 for exception in Signals[self.decimal]:
391 except Signals[self.decimal] as e:
411 except Signals[self.decimal] as e:
426 except Signals[self.decimal] as e:
442 except Signals[self.decimal] as error
    [all...]

Completed in 460 milliseconds