Home
last modified time | relevance | path

Searched refs:sourceFile (Results 1 – 6 of 6) sorted by relevance

/base/theme/wallpaper_mgr/utils/src/
Dfile_deal.cpp52 bool FileDeal::CopyFile(const std::string &sourceFile, const std::string &newFile) in CopyFile() argument
54 …HILOG_INFO("Copy file Star:from [%{public}s] to [%{public}s]", sourceFile.c_str(), newFile.c_str()… in CopyFile()
58 in.open(sourceFile.c_str(), std::ios::binary); in CopyFile()
60 HILOG_INFO("open file %{public}s failed", sourceFile.c_str()); in CopyFile()
75 …HILOG_INFO("copy file is %{public}s, new file is %{public}s,success", sourceFile.c_str(), newFile.… in CopyFile()
/base/hiviewdfx/hiview/utility/smart_parser/rule/
Dextract_rule.cpp157 bool ExtractRule::IsMatchPath(const string& sourceFile, const string& name, const string& pattern, in IsMatchPath() argument
161 sourceFile.c_str(), name.c_str(), pattern.c_str()); in IsMatchPath()
162 desPath = sourceFile; in IsMatchPath()
164 if (LogUtil::IsTestModel(sourceFile, name, pattern, desPath)) { in IsMatchPath()
179 if (regex_match(sourceFile, result, regex(out + part))) { in IsMatchPath()
180 out = ((*(sourceFile.rbegin())) == '/') ? sourceFile : (sourceFile + "/"); in IsMatchPath()
/base/theme/wallpaper_mgr/utils/include/
Dfile_deal.h30 static bool CopyFile(const std::string &sourceFile, const std::string &newFile);
/base/hiviewdfx/hiview/utility/smart_parser/feature_analysis/include/
Dlog_util.h52 static bool IsTestModel(const std::string& sourceFile, const std::string& name,
/base/hiviewdfx/hiview/utility/smart_parser/rule/include/
Dextract_rule.h42 …bool IsMatchPath(const std::string& sourceFile, const std::string& name, const std::string& patter…
/base/hiviewdfx/hiview/utility/smart_parser/feature_analysis/
Dlog_util.cpp265 bool LogUtil::IsTestModel(const string& sourceFile, const string& name, in IsTestModel() argument
270 std::string sourceFileName = StringUtil::GetRrightSubstr(sourceFile, "/"); in IsTestModel()