Lines Matching refs:path
26 # the absolute path to llvm-readelf
28 # the absolute path to hdc
62 def pull_so(self, path):
63 cmd = "{} file recv {} {}".format(HDC, path, self.saved_so_path)
70 def is_path_exists(self, path):
71 cmd = "{} shell ls {}".format(HDC, path)
141 for path in self.search_paths:
142 abs_path = os.path.join(path, so_name)
177 parser.add_argument('-p', '--path', type=str, default="paths.json", help='Set so search paths in your device.')
181 with os.fdopen(os.open(args.path, os.O_RDONLY, 0o755), 'r', encoding='utf-8') as f:
183 so_parser.saved_so_path = os.path.join(os.getcwd(), "saved/")