HomeSort by relevance Sort by last modified time
    Searched refs:src_path (Results 1 - 10 of 10) sorted by null

  /external/autotest/client/tools/
make_clean 14 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/
image_copy.py 32 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/chromium-trace/catapult/hooks/
install.py 15 def __init__(self, dst_path, src_path):
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/cros/
network_chroot.py 223 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/owasp/sanitizer/tools/
cut_release.py 100 def copy_directory_structure_template(src_path, container_path):
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)
  /development/testrunner/
create_test.py 240 src_path = app_path + "/tests/src"
241 if not os.path.exists(src_path):
242 os.mkdir(src_path)
  /system/core/adb/
file_sync_client.cpp 747 for (const char* src_path : srcs) {
750 if (stat(src_path, &st) == -1) {
751 sc.Error("cannot stat '%s': %s", src_path, strerror(errno));
771 dst_dir.append(adb_basename(src_path));
774 success &= copy_local_dir_remote(sc, src_path, dst_dir.c_str(),
778 sc.Warning("skipping special file '%s' (mode = 0o%o)", src_path, st.st_mode);
790 path_holder += adb_basename(src_path);
794 success &= sync_send(sc, src_path, dst_path, st.st_mtime, st.st_mode);
974 for (const char* src_path : srcs) {
977 if (!sync_stat(sc, src_path, &src_time, &src_mode, &src_size))
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
powermetrics_power_monitor.py 95 # src_path - list containing the key path to get the data from in
97 def ConstructMetric(out_path, src_path):
99 'out_path', 'src_path', 'samples'])
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/
compile_gwt_clients.py 30 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/
adb_host.py 726 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))
    [all...]

Completed in 398 milliseconds