/third_party/python/Lib/ |
H A D | signal.py | 15 'Handlers', __name__, 57 return _int_to_enum(handler, Handlers) 63 return _int_to_enum(handler, Handlers)
|
/third_party/python/Modules/ |
H A D | signalmodule.c | 109 } Handlers[Py_NSIG]; variable 162 return (PyObject *)_Py_atomic_load(&Handlers[i].func); in get_handler() 168 _Py_atomic_store(&Handlers[i].func, (uintptr_t)func); in set_handler() 308 _Py_atomic_store_relaxed(&Handlers[sig_num].tripped, 1); in trip_signal() 1777 _Py_atomic_store_relaxed(&Handlers[signum].tripped, 0); 1831 * 1 but we have no more signals to handle (Handlers[i].tripped 1835 * check Handlers[i].tripped. 1845 if (!_Py_atomic_load_relaxed(&Handlers[i].tripped)) { 1848 _Py_atomic_store_relaxed(&Handlers[i].tripped, 0); 2012 _Py_atomic_store_relaxed(&Handlers[signu [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Error.h | 159 friend Error handleErrors(Error E, HandlerTs &&... Handlers); 332 friend Error handleErrors(Error E, HandlerTs &&... Handlers); 503 HandlerT &&Handler, HandlerTs &&... Handlers) { in handleErrorImpl() 508 std::forward<HandlerTs>(Handlers)...); in handleErrorImpl() 541 void handleAllErrors(Error E, HandlerTs &&... Handlers) { in handleAllErrors() argument 542 auto F = handleErrors(std::move(E), std::forward<HandlerTs>(Handlers)...); in handleAllErrors() 502 handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload, HandlerT &&Handler, HandlerTs &&... Handlers) handleErrorImpl() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Error.h | 165 friend Error handleErrors(Error E, HandlerTs &&... Handlers); 363 friend Error handleErrors(Error E, HandlerTs &&... Handlers); 886 HandlerT &&Handler, HandlerTs &&... Handlers) { in handleErrorImpl() 891 std::forward<HandlerTs>(Handlers)...); in handleErrorImpl() 924 void handleAllErrors(Error E, HandlerTs &&... Handlers) { in handleAllErrors() argument 925 cantFail(handleErrors(std::move(E), std::forward<HandlerTs>(Handlers)...)); in handleAllErrors() 960 HandlerTs &&... Handlers) { in handleExpected() 965 std::forward<HandlerTs>(Handlers)...)) in handleExpected() 885 handleErrorImpl(std::unique_ptr<ErrorInfoBase> Payload, HandlerT &&Handler, HandlerTs &&... Handlers) handleErrorImpl() argument 959 handleExpected(Expected<T> ValOrErr, RecoveryFtor &&RecoveryPath, HandlerTs &&... Handlers) handleExpected() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/RPC/ |
H A D | RPCUtils.h | 669 // Handlers should not fail when passed an abandoned response error. 698 // Handlers should not fail when passed an abandoned response error. 733 // Handlers should not fail when passed an abandoned response error. 768 // Handlers should not fail when passed an abandoned response error. 996 Handlers[NegotiateId] = wrapHandler<OrcRPCNegotiate>( in RPCEndpointBase() 1087 auto I = Handlers.find(FnId); in handleOne() 1088 if (I != Handlers.end()) in handleOne() 1139 auto HandlerItr = Handlers.find(IdItr->second); in removeHandler() 1140 assert(HandlerItr != Handlers.end() && in removeHandler() 1142 Handlers in removeHandler() 1345 std::map<FunctionIdT, WrappedHandlerFn> Handlers; global() member [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | WinEHPrepare.cpp | 142 ArrayRef<const CatchPadInst *> Handlers) { in addTryBlockMapEntry() 148 for (const CatchPadInst *CPI : Handlers) { in addTryBlockMapEntry() 247 SmallVector<const CatchPadInst *, 2> Handlers; in calculateCXXStateNumbers() local 250 Handlers.push_back(CatchPad); in calculateCXXStateNumbers() 263 for (const auto *CatchPad : Handlers) { in calculateCXXStateNumbers() 283 addTryBlockMapEntry(FuncInfo, TryLow, TryHigh, CatchHigh, Handlers); in calculateCXXStateNumbers() 140 addTryBlockMapEntry(WinEHFuncInfo &FuncInfo, int TryLow, int TryHigh, int CatchHigh, ArrayRef<const CatchPadInst *> Handlers) addTryBlockMapEntry() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 195 assert(!DD && Handlers.empty() && "Debug/EH info didn't get finalized"); in ~AsmPrinter() 317 Handlers.emplace_back(std::make_unique<CodeViewDebug>(this), in doInitialization() 325 Handlers.emplace_back(std::unique_ptr<DwarfDebug>(DD), DbgTimerName, in doInitialization() 380 Handlers.emplace_back(std::unique_ptr<EHStreamer>(ES), EHTimerName, in doInitialization() 387 Handlers.emplace_back(std::make_unique<WinCFGuard>(this), CFGuardName, in doInitialization() 512 for (const HandlerInfo &HI : Handlers) { in EmitGlobalVariable() 761 for (const HandlerInfo &HI : Handlers) { in EmitFunctionHeader() 1098 for (const HandlerInfo &HI : Handlers) { in EmitFunctionBody() 1153 for (const HandlerInfo &HI : Handlers) { in EmitFunctionBody() 1227 for (const HandlerInfo &HI : Handlers) { in EmitFunctionBody() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFAsmPrinter.cpp | 64 Handlers.push_back(HandlerInfo(std::unique_ptr<BTFDebug>(BTF), "emit", in doInitialization()
|
/third_party/pulseaudio/man/ |
H A D | xmltoman | 210 my $parser = new XML::Parser(Handlers => {
|
/third_party/python/Lib/test/ |
H A D | test_signal.py | 30 self.assertIsInstance(sig, signal.Handlers) 50 enum.IntEnum, 'Handlers', 'signal', 54 enum._test_simple_enum(CheckedHandlers, signal.Handlers) 93 self.assertIsInstance(hup, signal.Handlers)
|
/third_party/typescript/tests/baselines/reference/ |
H A D | keyofAndIndexedAccess.js | 398 type Handlers<T> = { [K in keyof T]: (t: T[K]) => void } 399 declare function on<T>(handlerHash: Handlers<T>): T 1270 type Handlers<T> = {
1273 declare function on<T>(handlerHash: Handlers<T>): T;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | AsmPrinter.h | 152 /// Protected struct HandlerInfo and Handlers permit target extended 171 SmallVector<HandlerInfo, 1> Handlers; member in llvm::AsmPrinter
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | upb.h | 3553 ** upb::Handlers (upb_handlers) 3591 * of Handlers::Freeze that allows specifying this as a parameter. */ 3595 * Only needed for the advanced functions in upb::Handlers. */ 3621 /* A selector refers to a specific field handler in the Handlers object 3625 /* Static selectors for upb::Handlers. */ 3790 typedef upb_handlers Handlers; typedef 3863 /* A upb::Handlers object represents the set of handlers associated with a 5399 /* A upb::Sink is an object that binds a upb::Handlers object to some runtime 5419 * Also to ponder: selectors right now are independent of a specific Handlers 5426 * Having another selector-like thing that is specific to a Handlers instanc [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | Core.h | 3652 * The Handlers parameter should point to a pre-allocated array of 3658 * @param Handlers Memory address of an array to be filled with basic blocks. 3660 void LLVMGetHandlers(LLVMValueRef CatchSwitch, LLVMBasicBlockRef *Handlers);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Core.cpp | 3231 void LLVMGetHandlers(LLVMValueRef CatchSwitch, LLVMBasicBlockRef *Handlers) { 3235 *Handlers++ = wrap(*I);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 4303 SmallVector<BasicBlock *, 2> Handlers; in parseFunctionBody() local 4308 Handlers.push_back(BB); in parseFunctionBody() 4323 for (BasicBlock *Handler : Handlers) in parseFunctionBody()
|