Lines Matching refs:noerror
97 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
234 def _unpack1(self, via, bstring, offset, noerror): argument
240 if noerror:
250 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
253 return self._unpack1(self.struct, bstring, offset, noerror)
255 noerror)
260 if noerror:
353 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
361 offset = self.sequence.unpack_from(obj, cdict, bstring, offset, noerror)
442 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
445 if num is None and noerror:
451 if len(bstring) < nexto and not noerror:
458 noerror)
616 def unpack_from(self, vdict, cdict, bstring, offset=0, noerror=False): argument
636 obj, offset = code.unpack(vdict, cdict, bstring, offset, noerror)
641 def unpack(self, vdict, cdict, bstring, noerror=False): argument
646 offset = self.unpack_from(vdict, cdict, bstring, 0, noerror)
647 if not noerror and offset != len(bstring):