Set the quad-word value at the given file offset.
(self, offset, qword)
| 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 |
nothing calls this directly
no test coverage detected