Home | History | Annotate | Download | only in handler

Lines Matching defs:bytes

83 // number of bytes from |address| to the end of the region.
159 // the memory! So, we'll try to read kMaxStringLength bytes
160 // (or as many bytes as we can until we reach the end of the vm region).
168 vector<uint8_t> bytes;
169 if (ReadTaskMemory(target_task, address, (size_t)size_to_read, bytes) !=
173 return string(reinterpret_cast<const char*>(&bytes[0]));
180 // Reads an address range from another task. The bytes read will be returned
181 // in bytes, which will be resized as necessary.
185 vector<uint8_t> &bytes) {
207 bytes.resize(length);
208 memcpy(&bytes[0],
482 // Although we're reading kMaxStringLength bytes, it's copied in the