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

  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
supplicant.cpp 29 const std::string& src_file_path, const std::string& dest_file_path)
32 if (!android::base::ReadFileToString(src_file_path, &file_contents)) {
35 src_file_path.c_str(), strerror(errno));
50 * Copy |src_file_path| to |dest_file_path| if it exists.
52 * Returns 1 if |src_file_path| does not exists,
57 const std::string& src_file_path, const std::string& dest_file_path)
59 int ret = access(src_file_path.c_str(), R_OK);
63 ret = copyFile(src_file_path, dest_file_path);
67 src_file_path.c_str(), dest_file_path.c_str());
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.1/
supplicant.cpp 42 const std::string& src_file_path, const std::string& dest_file_path)
45 if (!android::base::ReadFileToString(src_file_path, &file_contents)) {
48 src_file_path.c_str(), strerror(errno));
63 * Copy |src_file_path| to |dest_file_path| if it exists.
65 * Returns 1 if |src_file_path| does not exist or not accessible,
70 const std::string& src_file_path, const std::string& dest_file_path)
72 int ret = access(src_file_path.c_str(), R_OK);
77 ret = copyFile(src_file_path, dest_file_path);
81 src_file_path.c_str(), dest_file_path.c_str());
  /test/vts/utils/python/coverage/
coverage_utils.py 177 src_file_path = gcno_summary.functions[key].src_file_name
178 src_file_name = src_file_path.rsplit(".", 1)[0]
424 for src_file_path in coverage_dict:
430 if src_file_path.startswith(str(project_name)):
435 src_file_path, git_project_name)
441 if len(parts) > 1 and src_file_path.startswith(parts[-1]):
446 src_file_path, git_project_name)
450 logging.info("Could not find git info for %s", src_file_path)
453 coverage_vec = coverage_dict[src_file_path]
457 self.web.AddCoverageReport(coverage_vec, src_file_path,
    [all...]
  /test/vts/utils/python/web/
web_utils.py 145 src_file_path,
160 src_file_path: the path to the original source file
183 src_file_path = os.path.relpath(src_file_path, git_project_path)
184 coverage.file_path = src_file_path
  /art/test/712-varhandle-invocations/util-src/
generate_java.py 584 src_file_path = output_path / java_file_for_class(test_class)
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_test_utils.py     [all...]

Completed in 319 milliseconds