• Home
  • Raw
  • Download

Lines Matching refs:resolvedPath

49     char resolvedPath[PATH_MAX] = { 0 };  in CanonicalizeSpecPath()  local
51 if (!_fullpath(resolvedPath, src, PATH_MAX)) { in CanonicalizeSpecPath()
58 (void)strncpy_s(resolvedPath, sizeof(resolvedPath), src, strlen(src)); in CanonicalizeSpecPath()
59 } else if (realpath(src, resolvedPath) == nullptr) { in CanonicalizeSpecPath()
66 if (sprintf_s(resolvedPath, PATH_MAX, "%s", src) == -1) { in CanonicalizeSpecPath()
76 std::string res(resolvedPath); in CanonicalizeSpecPath()
139 std::string resolvedPath = CanonicalizeSpecPath(tempFile.c_str()); in StdoutRecord() local
140 recordFile_ = fopen(resolvedPath.c_str(), mode.c_str()); in StdoutRecord()
161 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str()); in Start() local
162 recordFile_ = fopen(resolvedPath.c_str(), "w+"); in Start()
296 std::string resolvedPath = CanonicalizeSpecPath(fileName.c_str()); in ReadFileToString() local
297 OHOS::UniqueFd fd(open(resolvedPath.c_str(), O_RDONLY | O_BINARY)); in ReadFileToString()
361 std::string resolvedPath = CanonicalizeSpecPath(dataFile.c_str()); in CompressFile() local
362 FILE *fp = fopen(resolvedPath.c_str(), "rb"); in CompressFile()
401 std::string resolvedPath = CanonicalizeSpecPath(dataFile.c_str()); in UncompressFile() local
402 FILE *fp = fopen(resolvedPath.c_str(), "wb"); in UncompressFile()
451 std::string resolvedPath = CanonicalizeSpecPath(basePath.c_str()); in GetEntriesInDir() local
452 if (resolvedPath.empty()) { in GetEntriesInDir()
455 DIR *dir = opendir(resolvedPath.c_str()); in GetEntriesInDir()