Home
last modified time | relevance | path

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

/external/wpa_supplicant_8/wpa_supplicant/aidl/
Dsupplicant.cpp57 const std::string& src_file_path, const std::string& dest_file_path) in copyFile() argument
60 if (!android::base::ReadFileToString(src_file_path, &file_contents)) { in copyFile()
63 src_file_path.c_str(), strerror(errno)); in copyFile()
85 const std::string& src_file_path, const std::string& dest_file_path) in copyFileIfItExists() argument
87 int ret = access(src_file_path.c_str(), R_OK); in copyFileIfItExists()
92 ret = copyFile(src_file_path, dest_file_path); in copyFileIfItExists()
96 src_file_path.c_str(), dest_file_path.c_str()); in copyFileIfItExists()
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py4353 src_file_path = self.make_path('foo')
4355 self.create_file(src_file_path, 'testcontent')
4357 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4364 src_file_path = self.make_path('foo')
4366 self.create_file(src_file_path, 'testcontent')
4368 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4378 src_file_path = self.make_path('foo')
4380 self.create_file(src_file_path, 'testcontent')
4382 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4392 src_file_path = self.make_path('foo')
[all …]