Lines Matching refs:resolvedPath
192 char resolvedPath[PATH_MAX] = { 0 }; in CanonicalizeSpecPath() local
194 if (!_fullpath(resolvedPath, src, PATH_MAX)) { in CanonicalizeSpecPath()
201 if (realpath(src, resolvedPath) == nullptr) { in CanonicalizeSpecPath()
209 if (sprintf_s(resolvedPath, PATH_MAX, "%s", src) == -1) { in CanonicalizeSpecPath()
220 string res(resolvedPath); in CanonicalizeSpecPath()
227 string resolvedPath = CanonicalizeSpecPath((g_traceRootPath + filename).c_str()); in ReadFile() local
228 ifstream fin(resolvedPath.c_str()); in ReadFile()
785 string resolvedPath = CanonicalizeSpecPath((g_traceRootPath + path).c_str()); in DumpTrace() local
786 int traceFd = open(resolvedPath.c_str(), O_RDWR); in DumpTrace()
815 string resolvedPath = CanonicalizeSpecPath((g_traceRootPath + TRACE_MARKER_PATH).c_str()); in MarkOthersClockSync() local
816 int fd = open(resolvedPath.c_str(), O_WRONLY); in MarkOthersClockSync()
1070 string resolvedPath = CanonicalizeSpecPath(g_outputFile.c_str()); in DumpTrace() local
1071 …outFd = open(resolvedPath.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_I… in DumpTrace()