Home
last modified time | relevance | path

Searched refs:Fault (Results 1 – 25 of 63) sorted by relevance

123

/external/llvm/test/CodeGen/X86/
Dimplicit-null-check.ll158 ; Fault[0].Type:
160 ; Fault[0].FaultOffset:
162 ; Fault[0].HandlerOffset:
171 ; Fault[0].Type:
173 ; Fault[0].FaultOffset:
175 ; Fault[0].HandlerOffset:
184 ; Fault[0].Type:
186 ; Fault[0].FaultOffset:
188 ; Fault[0].HandlerOffset:
197 ; Fault[0].Type:
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DFaultMaps.cpp90 for (auto &Fault : FFI) { in emitFunctionInfo() local
92 << faultTypeToString(Fault.Kind) << "\n"); in emitFunctionInfo()
93 OS.EmitIntValue(Fault.Kind, 4); in emitFunctionInfo()
96 << *Fault.FaultingOffsetExpr << "\n"); in emitFunctionInfo()
97 OS.EmitValue(Fault.FaultingOffsetExpr, 4); in emitFunctionInfo()
100 << *Fault.HandlerOffsetExpr << "\n"); in emitFunctionInfo()
101 OS.EmitValue(Fault.HandlerOffsetExpr, 4); in emitFunctionInfo()
/external/llvm/lib/CodeGen/
DFaultMaps.cpp90 for (auto &Fault : FFI) { in emitFunctionInfo() local
92 << faultTypeToString(Fault.Kind) << "\n"); in emitFunctionInfo()
93 OS.EmitIntValue(Fault.Kind, 4); in emitFunctionInfo()
96 << *Fault.FaultingOffsetExpr << "\n"); in emitFunctionInfo()
97 OS.EmitValue(Fault.FaultingOffsetExpr, 4); in emitFunctionInfo()
100 << *Fault.HandlerOffsetExpr << "\n"); in emitFunctionInfo()
101 OS.EmitValue(Fault.HandlerOffsetExpr, 4); in emitFunctionInfo()
/external/autotest/site_utils/tester_feedback/
Dfeedback_delegate.py35 raise xmlrpclib.Fault('Unknown client (%s)' % client_id)
51 raise xmlrpclib.Fault('Unknown query type (%s)' % query_id)
53 raise xmlrpclib.Fault('Unsupported query type (%s)' % query_id)
102 raise xmlrpclib.Fault('New query (%s) is already registered' %
127 raise xmlrpclib.Fault('Query %d unknown to client %s' %
/external/libwebsockets/READMEs/
DREADME.fault-injection.md1 # `lws_fi` Fault Injection
21 ## Fault contexts and faults
40 ![Fault Injection Overview](../doc-assets/fault-injection.png)
46 structs are linked-lists of `lws_fi_t` objects. When Fault Injection is enabled
69 By default then just enabling Fault Injection at build does not have any impact
71 wants to the objects's Fault Injection context.
79 These allow user code to use the whole Fault Injection system without having to
127 creation info Fault Injection Context. By default the lws helper
132 ## Addings Fault Injection Rules to `lws_fi_ctx_t`
146 A key requirement is that Fault Injection rules must be availble to the code
[all …]
/external/autotest/client/cros/chameleon/
Dresolution_comparison.py42 except six.moves.xmlrpc_client.Fault as e:
99 except six.moves.xmlrpc_client.Fault as e:
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/xds/v3/
Dfault.proto27 // [#protodoc-title: Fault Injection]
28 // Fault Injection :ref:`configuration overview <config_http_filters_fault_injection>`.
33 // Fault aborts are controlled via an HTTP header (if applicable). See the
48 // Fault aborts are controlled via an HTTP header (if applicable).
Dfault_common.proto28 // Fault delays are controlled via an HTTP header (if applicable). See the
42 // Fault delays are controlled via an HTTP header (if applicable).
/external/python/cpython2/Lib/
DSimpleXMLRPCServer.py103 from xmlrpclib import Fault
265 except Fault, fault:
272 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
365 except Fault, fault:
637 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
Dxmlrpclib.py270 class Fault(Error): class
621 if isinstance(values, Fault):
800 raise Fault(**self._stack[0])
965 raise Fault(item['faultCode'], item['faultString'])
1030 target = FastUnmarshaller(True, False, _binary, mkdatetime, Fault)
1078 assert isinstance(params, TupleType) or isinstance(params, Fault),\
1081 if isinstance(params, Fault):
1317 except Fault:
/external/arm-trusted-firmware/docs/components/
Dras.rst11 Asynchronous External Abort (signalled as SErrors), Fault Handling and Error
46 Uncontainable Errors, Double Fault, and errors rising from EL3 execution. Please
145 RAS nodes can signal errors to the PE by raising Fault Handling and/or Error
170 A Double Fault condition arises when an error is signalled to the PE while
171 handling of a previously signalled error is still underway. When a Double Fault
176 with Double Fault conditions, specifically, the introduction of ``NMEA`` and
184 thus is able to detect a Double Fault conditions in software, without needing
185 the intended advantages of Armv8.4 Double Fault architecture extensions.
/external/python/cpython2/Doc/library/
Dxmlrpclib.rst116 raise a special :exc:`Fault` instance, used to signal XML-RPC server errors, or
118 Both :exc:`Fault` and :exc:`ProtocolError` derive from a base class called
174 :class:`Fault` or :class:`ProtocolError` object indicating an error.
370 Fault Objects
373 .. class:: Fault
375 A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault
388 In the following example we're going to intentionally cause a :exc:`Fault` by
411 except xmlrpclib.Fault as err:
413 print "Fault code: %d" % err.faultCode
414 print "Fault string: %s" % err.faultString
[all …]
/external/python/cpython3/Doc/library/
Dxmlrpc.client.rst131 raise a special :exc:`Fault` instance, used to signal XML-RPC server errors, or
133 Both :exc:`Fault` and :exc:`ProtocolError` derive from a base class called
188 :class:`Fault` or :class:`ProtocolError` object indicating an error.
370 Fault Objects
373 .. class:: Fault
375 A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault
388 In the following example we're going to intentionally cause a :exc:`Fault` by
411 except xmlrpc.client.Fault as err:
413 print("Fault code: %d" % err.faultCode)
414 print("Fault string: %s" % err.faultString)
[all …]
/external/autotest/server/site_tests/firmware_ECThermal/
Dfirmware_ECThermal.py84 except six.moves.xmlrpc_client.Fault:
138 except six.moves.xmlrpc_client.Fault:
151 except six.moves.xmlrpc_client.Fault:
/external/python/cpython3/Lib/xmlrpc/
Dclient.py233 class Fault(Error): class
497 if isinstance(values, Fault):
668 raise Fault(**self._stack[0])
854 raise Fault(item['faultCode'], item['faultString'])
921 target = FastUnmarshaller(True, False, mkbytes, mkdatetime, Fault)
967 assert isinstance(params, (tuple, Fault)), "argument must be tuple or Fault instance"
968 if isinstance(params, Fault):
1184 except Fault:
Dserver.py107 from xmlrpc.client import Fault, dumps, loads, gzip_encode, gzip_decode
268 except Fault as fault:
276 Fault(1, "%s:%s" % (exc_type, exc_value)),
366 except Fault as fault:
644 Fault(1, "%s:%s" % (exc_type, exc_value)),
/external/tcpdump/tests/
Dldp-ldp_tlv_print-oobr.out6Fault-Tolerant Session Parameters TLV (0x0503), length: 8, Flags: [ignore and don't forward if unk…
/external/autotest/server/site_tests/firmware_FWupdateThenSleep/
Dfirmware_FWupdateThenSleep.py77 except (EnvironmentError, six.moves.xmlrpc_client.Fault,
88 except (EnvironmentError, six.moves.xmlrpc_client.Fault,
/external/python/cpython3/Lib/test/
Dtest_xmlrpc.py446 f = xmlrpclib.Fault(42, 'Test Fault')
451 f = xmlrpclib.Fault(42, 'Test Fault')
458 self.assertRaises(xmlrpclib.Fault, xmlrpclib.loads, s)
983 except xmlrpclib.Fault:
1015 self.assertRaises(xmlrpclib.Fault, p.add, 6, 8)
1020 self.assertRaises(xmlrpclib.Fault, p.pow, 6, 8)
1024 self.assertRaises(xmlrpclib.Fault, p.add, 6, 8)
1028 self.assertRaises(xmlrpclib.Fault, p.add, 6, 8)
1460 self.assertRaises(xmlrpclib.Fault, xmlrpclib.loads, handle[44:])
/external/python/cpython2/Lib/test/
Dtest_xmlrpc.py234 f = xmlrpclib.Fault(42, 'Test Fault')
239 f = xmlrpclib.Fault(42, 'Test Fault')
246 self.assertRaises(xmlrpclib.Fault, xmlrpclib.loads, s)
692 self.assertRaises(xmlrpclib.Fault, p.add, 6, 8)
696 self.assertRaises(xmlrpclib.Fault, p.pow, 6, 8)
1008 self.assertRaises(xmlrpclib.Fault, xmlrpclib.loads, handle[44:])
/external/llvm/docs/
DFaultMaps.rst28 The Fault Map Section
40 uint8 : Fault Map Version (current version is 1)
/external/llvm/include/llvm/CodeGen/
DWinEHFuncInfo.h82 enum class ClrHandlerType { Catch, Finally, Fault, Filter }; enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DWinEHFuncInfo.h79 enum class ClrHandlerType { Catch, Finally, Fault, Filter }; enumerator
/external/autotest/server/site_tests/firmware_FAFTRPC/
Dfirmware_FAFTRPC.py181 except six.moves.xmlrpc_client.Fault as e:
238 except six.moves.xmlrpc_client.Fault as e:
/external/pigweed/pw_cpu_exception_cortex_m/
Ddocs.rst135 The ARMv7-M and ARMv8-M architectures have a Configurable Fault Status Register
147 Active Crash Fault Status Register (CFSR) fields:
204 Active Crash Fault Status Register (CFSR) fields:

123