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/hidl/1.4/
Dsupplicant.cpp42 const std::string& src_file_path, const std::string& dest_file_path) in copyFile() argument
45 if (!android::base::ReadFileToString(src_file_path, &file_contents)) { in copyFile()
48 src_file_path.c_str(), strerror(errno)); in copyFile()
70 const std::string& src_file_path, const std::string& dest_file_path) in copyFileIfItExists() argument
72 int ret = access(src_file_path.c_str(), R_OK); in copyFileIfItExists()
77 ret = copyFile(src_file_path, dest_file_path); in copyFileIfItExists()
81 src_file_path.c_str(), dest_file_path.c_str()); in copyFileIfItExists()
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py4247 src_file_path = self.make_path('foo')
4249 self.create_file(src_file_path, 'testcontent')
4251 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4258 src_file_path = self.make_path('foo')
4260 self.create_file(src_file_path, 'testcontent')
4262 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4272 src_file_path = self.make_path('foo')
4274 self.create_file(src_file_path, 'testcontent')
4276 fd1 = self.os.open(src_file_path, os.O_RDONLY)
4286 src_file_path = self.make_path('foo')
[all …]