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