Home | History | Annotate | Download | only in gdbrunner

Lines Matching refs:binary

205       RuntimeError: could not find the executable binary.
225 file_name = "gdbclient-binary-{}".format(os.getppid())
250 """Parse a binary's ELF header for arch."""
253 binary = binary_file.read(0x14)
255 raise RuntimeError("failed to read binary file")
256 ei_class = ord(binary[0x4]) # 1 = 32-bit, 2 = 64-bit
257 ei_data = ord(binary[0x5]) # Endianness
261 raise RuntimeError("binary isn't little-endian?")
263 e_machine = ord(binary[0x13]) << 8 | ord(binary[0x12])
289 gdb_path: Path of the gdb binary.