Lines Matching defs:resolvedPath
58 char resolvedPath[PATH_MAX] = { 0 };
60 if (!_fullpath(resolvedPath, src, PATH_MAX)) {
67 if (strncpy_s(resolvedPath, sizeof(resolvedPath), src, strlen(src)) == -1) {
71 } else if (realpath(src, resolvedPath) == nullptr) {
78 if (sprintf_s(resolvedPath, PATH_MAX, "%s", src) == -1) {
88 std::string res(resolvedPath);
151 std::string resolvedPath = CanonicalizeSpecPath(tempFile.c_str());
152 recordFile_ = fopen(resolvedPath.c_str(), mode.c_str());
173 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str());
174 recordFile_ = fopen(resolvedPath.c_str(), "w+");
290 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str());
291 std::ifstream inputString(resolvedPath, std::ios::in);
305 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str());
306 OHOS::UniqueFd fd(open(resolvedPath.c_str(), O_RDONLY | O_BINARY));
326 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str());
327 std::ofstream output(resolvedPath, std::ios::out);
370 std::string resolvedPath = CanonicalizeSpecPath(dataFile.c_str());
371 FILE *fp = fopen(resolvedPath.c_str(), "rb");
410 std::string resolvedPath = CanonicalizeSpecPath(dataFile.c_str());
411 FILE *fp = fopen(resolvedPath.c_str(), "wb");
460 std::string resolvedPath = CanonicalizeSpecPath(basePath.c_str());
461 CHECK_TRUE(resolvedPath.empty(), result, 0, "");
462 DIR *dir = opendir(resolvedPath.c_str());