Lines Matching defs:fileName
46 int32_t Store::FreeStore(const std::string &dirPath, const std::string &fileName)
48 if (dirPath.empty() || fileName.empty()) {
51 std::string path = dirPath + "/" + fileName;
99 int32_t Store::WriteDataToStore(const std::string &dirPath, const std::string &fileName,
106 if (!fileName.empty()) {
109 std::string path = pathTmp + fileName;
110 pathTmp = pathTmp + fileName;
140 int32_t Store::LoadDataFromStore(const std::string &dirPath, const std::string &fileName,
143 LOG(INFO) << "Store base is " << dirPath << "/" << fileName;
145 if (!fileName.empty()) {
146 path = path + "/" + fileName;