Searched refs:PyAsn1Error (Results 1 – 25 of 30) sorted by relevance
12
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/ |
D | namedtype.py | 51 raise error.PyAsn1Error('Type position out of range') 63 raise error.PyAsn1Error('Duplicate type %s' % (t,)) 68 raise error.PyAsn1Error('Type %s not found' % (tagSet,)) 74 raise error.PyAsn1Error('Type position out of range') 82 raise error.PyAsn1Error('Duplicate name %s' % (n,)) 87 raise error.PyAsn1Error('Name %s not found' % (name,)) 106 raise error.PyAsn1Error('Type position out of range') 113 raise error.PyAsn1Error('Type position out of range')
|
D | univ.py | 75 raise error.PyAsn1Error( 84 raise error.PyAsn1Error( 218 raise error.PyAsn1Error( 231 raise error.PyAsn1Error( 238 raise error.PyAsn1Error( 249 raise error.PyAsn1Error( 256 raise error.PyAsn1Error( 311 raise error.PyAsn1Error( 326 raise error.PyAsn1Error( 333 raise error.PyAsn1Error( [all …]
|
D | tagmap.py | 17 raise error.PyAsn1Error('Key in negative map') 31 raise error.PyAsn1Error('Duplicate default value at %s' % (self,)) 40 raise error.PyAsn1Error('Duplicate positive key %s' % (k,))
|
D | error.py | 1 from pyasn1.error import PyAsn1Error 3 class ValueConstraintError(PyAsn1Error): pass
|
D | base.py | 31 except error.PyAsn1Error: 52 raise error.PyAsn1Error('No value for %s()' % attr) 54 raise error.PyAsn1Error('No value') 191 raise error.PyAsn1Error('Method not implemented') 234 raise error.PyAsn1Error('Method not implemented') 236 raise error.PyAsn1Error('Method not implemented')
|
D | namedval.py | 18 raise error.PyAsn1Error('Duplicate name %s' % (name,)) 21 raise error.PyAsn1Error('Duplicate value %s=%s' % (name, val))
|
D | constraint.py | 90 raise error.PyAsn1Error( 95 raise error.PyAsn1Error( 159 raise error.PyAsn1Error('Single constraint expected')
|
D | tag.py | 20 raise error.PyAsn1Error( 84 raise error.PyAsn1Error(
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/ |
D | error.py | 1 class PyAsn1Error(Exception): pass class 2 class ValueConstraintError(PyAsn1Error): pass 3 class SubstrateUnderrunError(PyAsn1Error): pass
|
D | debug.py | 25 raise error.PyAsn1Error('bad debug flag %s' % (f,))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/ber/ |
D | test_decoder.py | 4 from pyasn1.error import PyAsn1Error 43 except PyAsn1Error: 53 except PyAsn1Error: 70 except PyAsn1Error: 177 except PyAsn1Error: 213 except PyAsn1Error: 221 except PyAsn1Error: 266 except PyAsn1Error: 320 except PyAsn1Error:
|
D | suite.py | 5 from pyasn1.error import PyAsn1Error
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/ |
D | decoder.py | 11 raise error.PyAsn1Error('Decoder not implemented for %s' % (tagSet,)) 15 raise error.PyAsn1Error('Indefinite length mode decoder not implemented for %s' % (tagSet,)) 21 … raise error.PyAsn1Error('Invalid tag format %r for %r' % (tagSet[0], self.protoComponent,)) 33 … raise error.PyAsn1Error('Invalid tag format %r for %r' % (tagSet[0], self.protoComponent,)) 71 raise error.PyAsn1Error('Missing end-of-octets terminator') 125 raise error.PyAsn1Error('Empty substrate') 128 raise error.PyAsn1Error( 208 raise error.PyAsn1Error('Unexpected %d-octet substrate for Null' % length) 217 raise error.PyAsn1Error('Empty substrate') 232 raise error.PyAsn1Error('Invalid leading 0x80 in sub-OID') [all …]
|
D | encoder.py | 167 raise error.PyAsn1Error('Short OID %s' % (value,)) 171 raise error.PyAsn1Error( 183 raise error.PyAsn1Error( 229 raise error.PyAsn1Error('Real exponent overflow') 246 raise error.PyAsn1Error('Prohibited Real base %s' % b)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/ |
D | decoder.py | 13 raise error.PyAsn1Error('Empty substrate') 23 raise error.PyAsn1Error('Boolean CER violation: %s' % byte)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/type/ |
D | test_namedtype.py | 2 from pyasn1.error import PyAsn1Error 66 except PyAsn1Error:
|
D | suite.py | 2 from pyasn1.error import PyAsn1Error
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/der/ |
D | test_decoder.py | 3 from pyasn1.error import PyAsn1Error
|
D | suite.py | 5 from pyasn1.error import PyAsn1Error
|
D | test_encoder.py | 4 from pyasn1.error import PyAsn1Error
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/cer/ |
D | suite.py | 5 from pyasn1.error import PyAsn1Error
|
D | test_decoder.py | 4 from pyasn1.error import PyAsn1Error
|
D | test_encoder.py | 4 from pyasn1.error import PyAsn1Error
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/ |
D | suite.py | 7 from pyasn1.error import PyAsn1Error
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/ |
D | suite.py | 9 from pyasn1.error import PyAsn1Error
|
12