예제 #1
0
파일: section.py 프로젝트: alfred-gw/pybfd
 def get_content(self, offset, size):
     """Return the specified number of bytes from the current section."""
     return _bfd.section_get_content(self.bfd, self._ptr, offset, size)
예제 #2
0
파일: section.py 프로젝트: alfred-gw/pybfd
 def content(self):
     """Return the entire section content."""
     return _bfd.section_get_content(self.bfd, self._ptr, 0, self.size)