Lines Matching refs:fileName
47 int32_t Store::FreeStore(const std::string &dirPath, const std::string &fileName) in FreeStore() argument
49 if (dirPath.empty() || fileName.empty()) { in FreeStore()
52 std::string path = dirPath + "/" + fileName; in FreeStore()
100 int32_t Store::WriteDataToStore(const std::string &dirPath, const std::string &fileName, in WriteDataToStore() argument
107 if (!fileName.empty()) { in WriteDataToStore()
110 std::string path = pathTmp + fileName; in WriteDataToStore()
111 pathTmp = pathTmp + fileName; in WriteDataToStore()
142 int32_t Store::LoadDataFromStore(const std::string &dirPath, const std::string &fileName, in LoadDataFromStore() argument
145 LOG(INFO) << "Store base is " << dirPath << "/" << fileName; in LoadDataFromStore()
147 if (!fileName.empty()) { in LoadDataFromStore()
148 path = path + "/" + fileName; in LoadDataFromStore()