Home
last modified time | relevance | path

Searched refs:binary_file (Results 1 – 3 of 3) sorted by relevance

/development/scripts/
Dgdbclient.py205 binary_file = None
229 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
231 if binary_file is None:
234 binary_file, local = gdbrunner.find_binary(device, pid, sysroot,
243 return (binary_file, pid, run_cmd)
279 def generate_setup_script(debugger_path, sysroot, linker_search_dir, binary_file, is64bit, host, po… argument
295 root, sysroot, binary_file.name, host, port, solib_search_path)
298 root, sysroot, binary_file.name, host, port, solib_search_path)
337 binary_file, pid, run_cmd = handle_switches(args, sysroot)
339 with binary_file:
[all …]
Dlldbclient.py205 binary_file = None
229 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
231 if binary_file is None:
234 binary_file, local = gdbrunner.find_binary(device, pid, sysroot,
243 return (binary_file, pid, run_cmd)
279 def generate_setup_script(debugger_path, sysroot, linker_search_dir, binary_file, is64bit, host, po… argument
295 root, sysroot, binary_file.name, host, port, solib_search_path)
298 root, sysroot, binary_file.name, host, port, solib_search_path)
337 binary_file, pid, run_cmd = handle_switches(args, sysroot)
339 with binary_file:
[all …]
/development/python-packages/gdbrunner/
D__init__.py313 def get_binary_arch(binary_file): argument
316 binary_file.seek(0)
317 binary = binary_file.read(0x14)