Home
last modified time | relevance | path

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

/hardware/interfaces/wifi/aidl/default/
Dwifi.cpp133 const std::string cur_file_path = kTombstoneFolderPath + cur_file_name; in cpioArchiveFilesInDir() local
134 if (stat(cur_file_path.c_str(), &st) == -1) { in cpioArchiveFilesInDir()
135 PLOG(ERROR) << "Failed to get file stat for " << cur_file_path; in cpioArchiveFilesInDir()
139 const int fd_read = open(cur_file_path.c_str(), O_RDONLY); in cpioArchiveFilesInDir()
141 PLOG(ERROR) << "Failed to open file " << cur_file_path; in cpioArchiveFilesInDir()
Dwifi_chip.cpp188 std::string cur_file_path = kTombstoneFolderPath + cur_file_name; in removeOldFilesInternal() local
189 if (stat(cur_file_path.c_str(), &cur_file_stat) == -1) { in removeOldFilesInternal()
190 PLOG(ERROR) << "Failed to get file stat for " << cur_file_path; in removeOldFilesInternal()
195 valid_files.push_back(std::pair<const time_t, std::string>(cur_file_time, cur_file_path)); in removeOldFilesInternal()