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