Searched refs:f_path (Results 1 – 2 of 2) sorted by relevance
53 for addr, f_path in file_args:54 args += [str(addr), f_path]58 for addr, f_path in sorted(file_args, key=lambda e: e[0]):59 p.expect_exact('Adding {} at {}'.format(f_path, hex(addr)))
93 def add_file(self, addr, f_path): argument94 blocks = round_up_int_div(os.path.getsize(f_path), self.CHUNK_SIZE)95 with open(f_path, 'rb') as fin: