Lines Matching defs:libPath
739 bool Helpers::CheckAopTransformPath(const std::string &libPath)
741 std::string lowerLibPath = libPath;
742 std::transform(libPath.begin(), libPath.end(), lowerLibPath.begin(), ::tolower);
754 std::string msg = "aop transform file suffix support " + supportSuffix + ", error file: " + libPath;
761 AopTransformFuncDef Helpers::LoadAopTransformLibFunc(const std::string &libPath,
764 auto loadRes = os::library_loader::Load(libPath);
782 bool Helpers::AopTransform(const std::string &inputFile, const std::string &libPath)
784 if (!CheckAopTransformPath(libPath)) {
789 AopTransformFuncDef transform = LoadAopTransformLibFunc(libPath, "Transform", handler);
797 std::string msg = "Transform exec fail: " + libPath;