Lines Matching refs:xReadBytes
280 def xReadBytes(self, addr, size): member in SBTarget
314 return int(I8_STRUCT.unpack(self.xReadBytes(addr, 1))[0])
318 return int(I16_STRUCT.unpack(self.xReadBytes(addr, 2))[0])
322 return int(I32_STRUCT.unpack(self.xReadBytes(addr, 4))[0])
326 return int(I64_STRUCT.unpack(self.xReadBytes(addr, 8))[0])
330 return int(U8_STRUCT.unpack(self.xReadBytes(addr, 1))[0])
334 return int(U16_STRUCT.unpack(self.xReadBytes(addr, 2))[0])
338 return int(U32_STRUCT.unpack(self.xReadBytes(addr, 4))[0])
342 return int(U64_STRUCT.unpack(self.xReadBytes(addr, 8))[0])
347 return int(I64_STRUCT.unpack(self.xReadBytes(addr, 8))[0])
348 return int(I32_STRUCT.unpack(self.xReadBytes(addr, 4))[0])
353 return int(U64_STRUCT.unpack(self.xReadBytes(addr, 8))[0])
354 return int(U32_STRUCT.unpack(self.xReadBytes(addr, 4))[0])
358 return FLT_STRUCT.unpack(self.xReadBytes(addr, 4))[0]
362 return DBL_STRUCT.unpack(self.xReadBytes(addr, 8))[0]
383 data = self.xReadBytes(addr, count * size)
415 data = self.xReadBytes(addr, count * size)
861 self.target.xReadBytes(base + start * size, (stop - start) * size)