Lines Matching refs:path
24 bool WriteUpdaterMessage(const std::string &path, const UpdateMessage &boot) in WriteUpdaterMessage() argument
26 char *realPath = realpath(path.c_str(), NULL); in WriteUpdaterMessage()
53 bool ReadUpdaterMessage(const std::string &path, UpdateMessage &boot) in ReadUpdaterMessage() argument
55 char *realPath = realpath(path.c_str(), NULL); in ReadUpdaterMessage()
89 auto path = GetBlockDeviceByMountPoint(MISC_PATH); in WriteUpdaterMiscMsg() local
90 if (path.empty()) { in WriteUpdaterMiscMsg()
92 path = MISC_FILE; in WriteUpdaterMiscMsg()
94 LOG(INFO) << "WriteUpdaterMiscMsg::misc path : " << path; in WriteUpdaterMiscMsg()
95 return WriteUpdaterMessage(path, boot); in WriteUpdaterMiscMsg()
100 auto path = GetBlockDeviceByMountPoint(MISC_PATH); in ReadUpdaterMiscMsg() local
101 if (path.empty()) { in ReadUpdaterMiscMsg()
103 path = MISC_FILE; in ReadUpdaterMiscMsg()
105 return ReadUpdaterMessage(path, boot); in ReadUpdaterMiscMsg()