Lines Matching refs:read
27 return struct.unpack('!B', hprof.read(1))[0]
30 return struct.unpack('!H', hprof.read(2))[0]
33 return struct.unpack('!I', hprof.read(4))[0]
36 return struct.unpack('!Q', hprof.read(8))[0]
102 c = hprof.read(1)
105 c = hprof.read(1)
144 while hprof.read(1):
152 string = hprof.read(length - idsize)
176 hprof.read(idsize * frames)
292 data = hprof.read(datalen) ; length -= datalen
300 hprof.read(idsize * count) ; length -= (idsize * count)
307 hprof.read(valsize(ty)*count) ; length -= (valsize(ty)*count)