HomeSort by relevance Sort by last modified time
    Searched refs:Fault (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 128 idesc64 isrL, 0x0008, 0 ; 0x01, 1 #DB, Debug Fault
135 idesc64 isrL, 0x0008, 0 ; 0x08, 8, #DF, Double Fault
139 idesc64 isrL, 0x0008, 0 ; 0x0C, 12, #SS, Stack Fault
140 idesc64 isrL, 0x0008, 0 ; 0x0D, 13, #GP, General Protection Fault
141 idesc64 isrL, 0x0008, 0 ; 0x0E, 14, #PF, Page Fault
143 idesc64 isrL, 0x0008, 0 ; 0x10, 16, #MF, Floating Point Fault
146 idesc64 isrL, 0x0008, 0 ; 0x13, 19, #XF, SSE Fault
167 dw isrR, 0 ; 0x01, 1 #DB, Debug Fault
174 dw isrR, 0 ; 0x08, 8, #DF, Double Fault
178 dw isrR, 0 ; 0x0C, 12, #SS, Stack Fault
    [all...]
xdfprotect.asm 102 idesc32 isrP, 0x0008, 0 ; 0x01, 1 #DB, Debug Fault
109 idesc32 isrP, 0x0008, 0 ; 0x08, 8, #DF, Double Fault
113 idesc32 isrP, 0x0008, 0 ; 0x0C, 12, #SS, Stack Fault
114 idesc32 isrP, 0x0008, 0 ; 0x0D, 13, #GP, General Protection Fault
115 idesc32 isrP, 0x0008, 0 ; 0x0E, 14, #PF, Page Fault
117 idesc32 isrP, 0x0008, 0 ; 0x10, 16, #MF, Floating Point Fault
120 idesc32 isrP, 0x0008, 0 ; 0x13, 19, #XF, SSE Fault
140 dw isrR, 0 ; 0x01, 1 #DB, Debug Fault
147 dw isrR, 0 ; 0x08, 8, #DF, Double Fault
151 dw isrR, 0 ; 0x0C, 12, #SS, Stack Fault
    [all...]
  /external/chromium_org/third_party/tlslite/scripts/
tls.py 24 #from tlslite.constants import AlertDescription, Fault
66 for fault in Fault.clientSharedKeyFaults + Fault.genericFaults:
68 connection.fault = fault
71 print " Good Fault %s" % (Fault.faultNames[fault])
73 print " BAD FAULT %s: %s" % (Fault.faultNames[fault], str(e)
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/
api.py 20 from constants import AlertLevel, AlertDescription, Fault
46 from constants import AlertLevel, AlertDescription, Fault
TLSConnection.py 443 if srpUsername and self.fault == Fault.badUsername:
445 if password and self.fault == Fault.badPassword:
450 if self.fault == Fault.badIdentifier:
453 elif self.fault == Fault.badSharedKey:
    [all...]
constants.py 183 class Fault:
TLSRecordLayer.py 161 #Fault we will induce, for testing purposes
162 self.fault = None
517 if self.fault == Fault.badMAC:
536 if self.fault == Fault.badPadding:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 103 from xmlrpclib import Fault
265 except Fault, fault:
266 response = xmlrpclib.dumps(fault, allow_none=self.allow_none,
272 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
365 except Fault, fault:
367 {'faultCode' : fault.faultCode,
368 'faultString' : fault.faultString}
637 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value))
    [all...]
xmlrpclib.py 19 # 1999-02-02 fl Added fault handling, handle empty sequences, etc.
104 Fault Indicates an XML-RPC fault package
133 dumps Convert an argument tuple or a Fault instance to an XML-RPC
261 # Indicates an XML-RPC fault response package. This exception is
263 # a fault string. This exception can also used as a class, to
264 # generate a fault XML-RPC message.
266 # @param faultCode The XML-RPC fault code.
267 # @param faultString The XML-RPC fault string.
269 class Fault(Error)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 103 from xmlrpclib import Fault
265 except Fault, fault:
266 response = xmlrpclib.dumps(fault, allow_none=self.allow_none,
272 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
365 except Fault, fault:
367 {'faultCode' : fault.faultCode,
368 'faultString' : fault.faultString}
637 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value))
    [all...]
xmlrpclib.py 19 # 1999-02-02 fl Added fault handling, handle empty sequences, etc.
104 Fault Indicates an XML-RPC fault package
133 dumps Convert an argument tuple or a Fault instance to an XML-RPC
261 # Indicates an XML-RPC fault response package. This exception is
263 # a fault string. This exception can also used as a class, to
264 # generate a fault XML-RPC message.
266 # @param faultCode The XML-RPC fault code.
267 # @param faultString The XML-RPC fault string.
269 class Fault(Error)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.cc     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 199 f = xmlrpclib.Fault(42, 'Test Fault')
200 self.assertEqual(repr(f), "<Fault 42: 'Test Fault'>")
204 f = xmlrpclib.Fault(42, 'Test Fault')
207 self.assertEqual(newf, {'faultCode': 42, 'faultString': 'Test Fault'})
211 self.assertRaises(xmlrpclib.Fault, xmlrpclib.loads, s)
604 self.assertRaises(xmlrpclib.Fault, p.add, 6, 8)
608 self.assertRaises(xmlrpclib.Fault, p.pow, 6, 8
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 199 f = xmlrpclib.Fault(42, 'Test Fault')
200 self.assertEqual(repr(f), "<Fault 42: 'Test Fault'>")
204 f = xmlrpclib.Fault(42, 'Test Fault')
207 self.assertEqual(newf, {'faultCode': 42, 'faultString': 'Test Fault'})
211 self.assertRaises(xmlrpclib.Fault, xmlrpclib.loads, s)
604 self.assertRaises(xmlrpclib.Fault, p.add, 6, 8)
608 self.assertRaises(xmlrpclib.Fault, p.pow, 6, 8
    [all...]

Completed in 685 milliseconds