MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / set_qword_at_offset

Method set_qword_at_offset

pythonmemorymodule/pefile.py:6929–6931  ·  view source on GitHub ↗

Set the quad-word value at the given file offset.

(self, offset, qword)

Source from the content-addressed store, hash-verified

6927 return self.set_bytes_at_rva(rva, self.get_data_from_qword(qword))
6928
6929 def set_qword_at_offset(self, offset, qword):
6930 """Set the quad-word value at the given file offset."""
6931 return self.set_bytes_at_offset(offset, self.get_data_from_qword(qword))
6932
6933 ##
6934 # Set bytes

Callers

nothing calls this directly

Calls 2

set_bytes_at_offsetMethod · 0.95
get_data_from_qwordMethod · 0.95

Tested by

no test coverage detected