Home
last modified time | relevance | path

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

/device/google/trout/hal/vehicle/2.0/
DPowerStateListener.cpp41 auto tempFilePath = filePath + ".XXXXXX"; in ForwardSocketToFile() local
42 auto tempFileFd = mkstemp(const_cast<char*>(tempFilePath.c_str())); in ForwardSocketToFile()
43 LOG(INFO) << "write to temp file " << tempFilePath; in ForwardSocketToFile()
46 LOG(ERROR) << __func__ << ": failed to create temp file " << tempFilePath << ": " in ForwardSocketToFile()
53 LOG(ERROR) << __func__ << ": write error to temp file " << tempFilePath << ": " in ForwardSocketToFile()
63 LOG(INFO) << "move " << tempFilePath << " to " << filePath; in ForwardSocketToFile()
64 rename(tempFilePath.c_str(), filePath.c_str()); in ForwardSocketToFile()