Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_encoder.cpp124 auto tmpOutPath = realOutPath_ + "." + std::to_string(getpid()) + "." + tempSuffix; in SaveAndRename() local
125 std::fstream fileStream(tmpOutPath.c_str(), in SaveAndRename()
128 LOG_ECMA(ERROR) << "The file path(" << tmpOutPath << ") open failure! errno: " << errno; in SaveAndRename()
146 if (rename(tmpOutPath.c_str(), realOutPath_.c_str())) { in SaveAndRename()
147 …LOG_ECMA(ERROR) << "Rename " << tmpOutPath << " --> " << realOutPath_ << " failure!, errno: " << e… in SaveAndRename()