Home
last modified time | relevance | path

Searched full:shlex (Results 1 – 5 of 5) sorted by relevance

/linux/tools/perf/util/
H A Dsetup.py4 import shlex
31 cmd = shlex.split(f"{cc} {cc_options} {option}") + [
/linux/tools/testing/kunit/
H A Dkunit_kernel.py14 import shlex
133 # Note: shlex.join() does what we want, but requires python 3.8+.
134 print('Running tests with:\n$', ' '.join(shlex.quote(arg) for arg in qemu_command))
156 print('Running tests with:\n$', linux_bin, ' '.join(shlex.quote(arg) for arg in params))
/linux/tools/lib/python/kdoc/
H A Dpython_version.py23 import shlex
64 w = shlex.quote(w)
/linux/tools/docs/
H A Dsphinx-build-wrapper51 import shlex
177 sphinxopts = shlex.split(os.environ.get("SPHINXOPTS", ""))
479 latex_cmd.extend(shlex.split(self.latexopts))
/linux/tools/perf/scripts/python/
H A Dparallel-perf.py13 import shlex
52 sh_cmd = [ shlex.quote(x) for x in self.cmd ]
75 args = shlex.split(self.pipe_to)