Lines Matching refs:cmd
48 def RunCommand(cmd, verbose=False, env=None, expected_return_values=None): argument
53 cmd[0] = FindBinaryPath(cmd[0])
56 print('Running: ' + ' '.join(cmd))
58 cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env)
65 + ' '.join(cmd)
88 cmd = ['soong_zip']
89 cmd.extend(['-o', args.output])
99 cmd.extend(['-C', work_dir])
100 cmd.extend(['-f', original_apex])
112 cmd.extend(['-C', extract_dir])
113 cmd.extend(['-f', file_path])
114 cmd.extend(['-s', meta_file])
124 cmd.extend(['-L', '9'])
126 RunCommand(cmd, verbose=args.verbose)