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