Lines Matching refs:devPath
136 std::string devPath; member
174 infos.devPath = GetBlockDeviceByMountPoint(infos.partitionName); in GetUpdateBlockInfo()
175 LOG(INFO) << "ExecuteUpdateBlock::updating dev path : " << infos.devPath; in GetUpdateBlockInfo()
176 if (infos.devPath.empty()) { in GetUpdateBlockInfo()
282 int fd = open(infos.devPath.c_str(), O_RDWR | O_LARGEFILE); in DoExecuteUpdateBlock()
391 bool UScriptInstructionBlockCheck::ExecReadBlockInfo(const std::string &devPath, Uscript::UScriptCo… in ExecReadBlockInfo() argument
395 int fd = open(devPath.c_str(), O_RDWR | O_LARGEFILE); in ExecReadBlockInfo()
447 auto devPath = GetBlockDeviceByMountPoint(partitionName); in Execute() local
448 LOG(INFO) << "UScriptInstructionBlockCheck::dev path : " << devPath; in Execute()
451 if (devPath.empty() || (!ExecReadBlockInfo(devPath, context, mountTime, mountCount))) { in Execute()
469 int UScriptInstructionShaCheck::ExecReadShaInfo(const std::string &devPath, const std::string &bloc… in ExecReadShaInfo() argument
473 int fd = open(devPath.c_str(), O_RDWR | O_LARGEFILE); in ExecReadShaInfo()
550 auto devPath = GetBlockDeviceByMountPoint(partitionName); in Execute() local
551 LOG(INFO) << "UScriptInstructionShaCheck::dev path : " << devPath; in Execute()
552 if (devPath.empty()) { in Execute()
557 return ExecReadShaInfo(devPath, blockPairs, contrastSha, context); in Execute()