Lines Matching refs:realPath
50 std::string realPath; in Serialize() local
51 if (!RealPath(std::string(fileName), realPath, false)) { in Serialize()
54 std::fstream writer(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in Serialize()
78 std::string realPath; in Serialize() local
79 if (!RealPath(std::string(fileName), realPath, false)) { in Serialize()
82 std::fstream writer(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in Serialize()
105 std::string realPath; in SerializeBuiltins() local
106 if (!RealPath(std::string(fileName), realPath, false)) { in SerializeBuiltins()
109 std::fstream write(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::app); in SerializeBuiltins()
142 std::string realPath; in Deserialize() local
143 if (!RealPath(std::string(snapshotFile), realPath, false)) { in Deserialize()
153 MemMap fileMap = FileMap(realPath.c_str(), FILE_RDONLY, PAGE_PROT_READWRITE); in Deserialize()