Lines Matching refs:subprocess
32 import subprocess
191 res = subprocess.check_output([self._debugfs, '-R', 'ls -l -p %s' % path, self._payload],
192 text=True, stderr=subprocess.DEVNULL)
211 stdout = subprocess.check_output([self._debugfs, '-R', 'dump_extents <%s>' % ino,
212 self._payload], text=True, stderr=subprocess.DEVNULL)
236 stdout = subprocess.check_output([
241 ], text=True, stderr=subprocess.DEVNULL)
258 subprocess.run([self._fsckerofs, '--extract=%s' % (dest), '--overwrite', self._payload],
259 stdout=subprocess.DEVNULL, check=True)
263 subprocess.run([self._debugfs, '-R', 'rdump ./ %s' % (dest), self._payload],
265 except subprocess.CalledProcessError as e: