HomeSort by relevance Sort by last modified time
    Searched refs:PyAsn1Error (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/
error.py 1 class PyAsn1Error(Exception): pass
2 class ValueConstraintError(PyAsn1Error): pass
3 class SubstrateUnderrunError(PyAsn1Error): pass
debug.py 25 raise error.PyAsn1Error('bad debug flag %s' % (f,))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/
error.py 1 from pyasn1.error import PyAsn1Error
3 class ValueConstraintError(PyAsn1Error): pass
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')
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,))
namedval.py 18 raise error.PyAsn1Error('Duplicate name %s' % (name,))
21 raise error.PyAsn1Error('Duplicate value %s=%s' % (name, val))
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')
tag.py 20 raise error.PyAsn1Error(
84 raise error.PyAsn1Error(
constraint.py 90 raise error.PyAsn1Error(
95 raise error.PyAsn1Error(
159 raise error.PyAsn1Error('Single constraint expected')
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...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/der/
test_decoder.py 3 from pyasn1.error import PyAsn1Error
suite.py 5 from pyasn1.error import PyAsn1Error
test_encoder.py 4 from pyasn1.error import PyAsn1Error
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/type/
suite.py 2 from pyasn1.error import PyAsn1Error
test_namedtype.py 2 from pyasn1.error import PyAsn1Error
66 except PyAsn1Error:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/
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/codec/ber/
suite.py 5 from pyasn1.error import PyAsn1Error
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:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/cer/
suite.py 5 from pyasn1.error import PyAsn1Error
test_decoder.py 4 from pyasn1.error import PyAsn1Error
test_encoder.py 4 from pyasn1.error import PyAsn1Error
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/
suite.py 9 from pyasn1.error import PyAsn1Error
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/
suite.py 7 from pyasn1.error import PyAsn1Error
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/
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...]
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)

Completed in 5273 milliseconds

1 2