Searched refs:executable_path (Results 1 – 1 of 1) sorted by relevance
/development/python-packages/gdbrunner/ |
D | __init__.py | 223 def find_file(device, executable_path, sysroot, run_as_cmd=None): argument 243 if not os.path.isabs(executable_path): 244 raise ValueError("'{}' is not an absolute path".format(executable_path)) 250 yield (sysroot + executable_path, True) 254 target = device.shell(['readlink', '-e', '-n', executable_path])[0] 264 cmd = ["cat", executable_path, ">", remote_temp_path] 272 "device".format(executable_path)) 279 raise RuntimeError('Could not find executable {}'.format(executable_path))
|