Home
last modified time | relevance | path

Searched refs:src_path (Results 1 – 8 of 8) sorted by relevance

/external/autotest/client/cros/
Dnetwork_chroot.py223 src_path = os.path.join('/', rootdir)
225 if not os.path.exists(src_path):
227 elif os.path.islink(src_path):
228 link_path = os.readlink(src_path)
232 mount_arg = '%s,%s' % (src_path, src_path)
238 src_path = os.path.join('/', config_file)
240 if os.path.exists(src_path):
241 shutil.copyfile(src_path, dst_path)
/external/chromium-trace/catapult/hooks/
Dinstall.py15 def __init__(self, dst_path, src_path): argument
17 self.src_path = src_path
20 full_src_path = os.path.join(_TOP_PATH, self.src_path)
38 os.path.basename(self.src_path), full_dst_path))
49 os.path.basename(self.src_path),
/external/autotest/client/tools/
Dmake_clean14 src_path = os.path.abspath(os.path.join('tests', dir, 'src'))
15 if not os.path.exists(src_path):
18 cmd = 'rm -rf ' + src_path
20 cmd = 'cd %s; make clean > /dev/null 2>&1 ' % src_path
/external/autotest/client/virt/tests/
Dimage_copy.py32 src_path = os.path.join(mount_dest_dir, image)
34 cmd = 'cp %s %s' % (src_path, dst_path)
41 if not os.path.exists(src_path):
42 raise error.TestError('Could not find %s in NFS share' % src_path)
/external/owasp/sanitizer/tools/
Dcut_release.py100 def copy_directory_structure_template(src_path, container_path): argument
103 replace_fields(os.path.basename(src_path)))
104 if os.path.isdir(src_path):
106 for child in os.listdir(src_path):
110 os.path.join(src_path, child), dest_path)
112 shutil.copyfile(src_path, dest_path)
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
Dpowermetrics_power_monitor.py97 def ConstructMetric(out_path, src_path): argument
100 return RunningAverage(out_path, src_path, [])
122 for k in metric.src_path:
202 logging.info('Field missing from powermetrics output: %s', m.src_path)
/external/autotest/utils/
Dcompile_gwt_clients.py30 src_path = os.path.join(_DEFAULT_APP_DIR, 'src')
32 for project in os.listdir(src_path):
34 project_path = os.path.join(src_path, project)
/external/autotest/server/hosts/
Dadb_host.py726 src_path = os.path.join(tmp_dir, os.path.basename(dest))
729 self.teststation.send_file(source, src_path,
735 self.adb_run('push %s %s' % (src_path, dest))