Home
last modified time | relevance | path

Searched refs:src_file_path (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/tools/asuite/atest/integration_tests/
H A Dbazel_mode_test.py238 src_file_path = test_dir.joinpath(f'{src_file_name}')
239 src_file_path.write_text(test_src.src_body, encoding='utf8')
254 return (src_file_path, bp_file_path)
266 src_file_path = test_dir.joinpath(f'{src_file_name}')
267 src_file_path.write_text(test_src, encoding='utf8')
282 return (src_file_path, bp_file_path)
293 src_file_path = test_dir.joinpath(f'{src_file_name}')
294 src_file_path.write_text(reporter_src.src_body, encoding='utf8')
308 return (src_file_path, bp_file_path)
/aosp_15_r20/external/wpa_supplicant_8/wpa_supplicant/aidl/vendor/
H A Dsupplicant.cpp58 const std::string& src_file_path, const std::string& dest_file_path) in copyFile() argument
61 if (!android::base::ReadFileToString(src_file_path, &file_contents)) { in copyFile()
64 src_file_path.c_str(), strerror(errno)); in copyFile()
86 const std::string& src_file_path, const std::string& dest_file_path) in copyFileIfItExists() argument
88 int ret = access(src_file_path.c_str(), R_OK); in copyFileIfItExists()
93 ret = copyFile(src_file_path, dest_file_path); in copyFileIfItExists()
97 src_file_path.c_str(), dest_file_path.c_str()); in copyFileIfItExists()
/aosp_15_r20/art/test/712-varhandle-invocations/util-src/
H A Dgenerate_java.py812 src_file_path = output_path / java_file_for_class(test_class)
986 with src_file_path.open("w") as src_file:
1018 src_file_path = output_path / java_file_for_class(test_class)
1073 with src_file_path.open("w") as src_file:
1079 src_file_path = output_path / java_file_for_class(test_class)
1133 with src_file_path.open("w") as src_file:
/aosp_15_r20/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/
Dgd_device.py691 def push_or_die(self, src_file_path, dst_file_path, push_timeout=300, overwrite_existing=True): argument
700 …g.debug("Skip pushing {} to {} as it already exists on device".format(src_file_path, dst_file_path…
702 … out = self.adb.push([src_file_path, dst_file_path], timeout=push_timeout).decode(UTF_8).rstrip()
704 … asserts.fail('Unable to push file %s to %s due to %s' % (src_file_path, dst_file_path, out))
/aosp_15_r20/tools/test/connectivity/acts/framework/acts/controllers/
Dandroid_device.py1745 def push_system_file(self, src_file_path, dst_file_path, push_timeout=300): argument
1762 out = self.adb.push('%s %s' % (src_file_path, dst_file_path),
1766 src_file_path, dst_file_path, out)
1771 src_file_path, dst_file_path, e)
/aosp_15_r20/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py4381 src_file_path = self.make_path("foo")
4383 self.create_file(src_file_path, "testcontent")
4385 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4391 src_file_path = self.make_path("foo")
4393 self.create_file(src_file_path, "testcontent")
4395 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4405 src_file_path = self.make_path("foo")
4407 self.create_file(src_file_path, "testcontent")
4409 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4419 src_file_path = self.make_path("foo")
[all …]
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtel_test_utils.py2867 def system_file_push(ad, src_file_path, dst_file_path): argument
2872 cmd = "%s %s" % (src_file_path, dst_file_path)
2874 skip_sl4a = True if "sl4a.apk" in src_file_path else False