Home | History | Annotate | Download | only in common

Lines Matching defs:region

161 	const StExecutableImage::MemoryRegion & region = m_image->getRegionAtIndex(index);
162 if (region.m_type == StExecutableImage::TEXT_REGION)
166 else if (region.m_type == StExecutableImage::FILL_REGION)
184 const StExecutableImage::MemoryRegion & region = m_image->getRegionAtIndex(m_index);
185 assert(region.m_type == StExecutableImage::TEXT_REGION);
187 unsigned copyBytes = std::min<unsigned>(region.m_length - offset, maxBytes);
188 memcpy(buffer, &region.m_data[offset], copyBytes);
195 const StExecutableImage::MemoryRegion & region = m_image->getRegionAtIndex(m_index);
196 return region.m_length;
201 const StExecutableImage::MemoryRegion & region = m_image->getRegionAtIndex(m_index);
202 return region.m_address;
216 const StExecutableImage::MemoryRegion & region = m_image->getRegionAtIndex(m_index);
217 return region.m_length;
222 const StExecutableImage::MemoryRegion & region = m_image->getRegionAtIndex(m_index);
223 return region.m_address;