HomeSort by relevance Sort by last modified time
    Searched refs:src_path (Results 1 - 24 of 24) 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
  /test/vts/utils/python/reporting/
report_file_utils.py 64 src_path,
71 src_path: string, source report file path.
84 dir_path = os.path.dirname(src_path)
86 relative_path = os.path.basename(src_path)
107 def _PushReportFile(self, src_path, dest_path):
111 src_path: string, source path of report file
114 src_path = NotNoneStr(src_path)
123 shutil.copy(src_path, dest_path)
125 def SaveReport(self, src_path, new_file_name=None, file_name_prefix=None)
    [all...]
  /external/libxcam/tests/
test-binary-kernel.cpp 50 char *src_path = NULL, *bin_path = NULL; local
71 src_path = optarg;
89 if (!src_path || !bin_path) {
98 if (src_file.open (src_path, "r") != XCAM_RETURN_NO_ERROR ||
105 CHECK_STATEMENT (ret, FAILED_STATEMENT, "get source sizes from %s failed", src_path);
111 CHECK_STATEMENT (ret, FAILED_STATEMENT, "read source from %s failed", src_path);
  /external/autotest/client/deps/camera_hal3/
camera_hal3.py 14 src_path = os.path.join(os.environ['SYSROOT'], 'usr', 'bin')
17 utils.get_file(os.path.join(src_path, binary),
  /external/pdfium/public/
PRESUBMIT.py 13 src_path = input_api.os_path.dirname(input_api.PresubmitLocalPath())
15 src_path, 'testing' , 'tools' , 'api_check.py')
  /external/skia/infra/bots/recipes/
upload_nano_results.py 24 src_path = api.path['start_dir'].join(
26 with api.context(cwd=src_path):
29 src_path,
  /external/skqp/infra/bots/recipes/
upload_nano_results.py 24 src_path = api.path['start_dir'].join(
26 with api.context(cwd=src_path):
29 src_path,
  /external/autotest/client/cros/
network_chroot.py 227 src_path = os.path.join('/', rootdir)
229 if not os.path.exists(src_path):
231 elif os.path.islink(src_path):
232 link_path = os.readlink(src_path)
236 mount_arg = '%s,%s' % (src_path, src_path)
242 src_path = os.path.join('/', config_file)
244 if os.path.exists(src_path):
245 shutil.copyfile(src_path, dst_path)
247 for src_path, target_path in self.ROOT_SYMLINKS
    [all...]
  /test/framework/harnesses/host_controller/command_processor/
command_upload.py 102 src_path = self.console.device_image_info[src_name]
116 src_path = path.strip()
117 if not os.path.isfile(src_path):
118 print("Cannot find a file: {}".format(src_path))
  /external/pdfium/testing/tools/
api_check.py 64 def _GetFunctionsFromPublicHeaders(src_path):
65 public_path = os.path.join(src_path, 'public')
101 src_path = os.path.dirname(os.path.dirname(os.path.dirname(script_abspath)))
102 public_functions = _GetFunctionsFromPublicHeaders(src_path)
105 api_test_path = os.path.join(src_path, api_test_relative_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)
  /tools/acloud/public/acloud_kernel/
kernel_swapper.py 103 def PushFile(self, src_path, dest_path):
107 src_path: string, local path to file to be pushed.
113 cmd = 'scp %s %s root@%s:%s' % (' '.join(SSH_FLAGS), src_path,
  /system/core/adb/
file_sync_client.cpp 968 for (const char* src_path : srcs) {
971 if (stat(src_path, &st) == -1) {
972 sc.Error("cannot stat '%s': %s", src_path, strerror(errno));
    [all...]
  /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/python/cpython3/Modules/clinic/
_winapi.c.h 171 "CreateJunction($module, src_path, dst_path, /)\n"
179 _winapi_CreateJunction_impl(PyObject *module, LPWSTR src_path,
186 LPWSTR src_path; local
190 &src_path, &dst_path)) {
193 return_value = _winapi_CreateJunction_impl(module, src_path, dst_path);
  /external/python/cpython3/Modules/
_winapi.c 471 src_path: LPWSTR
477 _winapi_CreateJunction_impl(PyObject *module, LPWSTR src_path,
495 if (src_path == NULL || dst_path == NULL)
498 if (wcsncmp(src_path, L"\\??\\", prefix_len) == 0)
515 if (GetFileAttributesW(src_path) == INVALID_FILE_ATTRIBUTES)
519 print_len = (USHORT)GetFullPathNameW(src_path, 0, NULL, NULL);
567 if (GetFullPathNameW(src_path, print_len + 1,
    [all...]
  /prebuilts/sdk/update_prebuilts/
update_prebuilts.py 348 def mv(src_path, dst_path):
353 os.rename(src_path, dst_path)
    [all...]
  /external/lisa/libs/utils/android/
workload.py 39 WorkloadPackage = namedtuple("WorkloadPackage", "package_name apk_path src_path")
77 if p.src_path != None:
78 bld.build_module(p.src_path)
  /external/libmojo/build/android/gyp/util/
build_utils.py 256 def AddToZipHermetic(zip_file, zip_path, src_path=None, data=None,
263 src_path: Path of the source file. Mutually exclusive with |data|.
268 assert (src_path is None) != (data is None), (
269 '|src_path| and |data| are mutually exclusive.')
274 if src_path and os.path.islink(src_path):
277 zip_file.writestr(zipinfo, os.readlink(src_path))
280 if src_path:
281 with file(src_path) as f:
315 AddToZipHermetic(outfile, zip_path, src_path=fs_path
    [all...]
  /build/make/core/
base_rules.mk 610 $(eval src_path := $(word 1,$(parts))) \
614 $(src_path):$(call append-path,$(dir),$(file))))))
  /bootable/recovery/tests/component/
imgdiff_test.cpp 815 std::string src_path = from_testdata_base("deflate_src.zip"); local
    [all...]
  /external/autotest/server/site_tests/provision_CheetsUpdate/
push_to_device.py 109 def read(self, src_path):
110 """Gets the contents of |src_path| from the remote test device."""
111 return self.check_output('/bin/cat %s' % src_path)
    [all...]
  /development/vndk/tools/definition-tool/
vndk_definition_tool.py     [all...]

Completed in 529 milliseconds