Lines Matching refs:err

209   std::string err;  in PatchPartitionCheckFn()  local
210 auto target = Partition::Parse(args[0], &err); in PatchPartitionCheckFn()
213 args[0].c_str(), err.c_str()); in PatchPartitionCheckFn()
216 auto source = Partition::Parse(args[1], &err); in PatchPartitionCheckFn()
219 args[1].c_str(), err.c_str()); in PatchPartitionCheckFn()
250 std::string err; in PatchPartitionFn() local
251 auto target = Partition::Parse(args[0], &err); in PatchPartitionFn()
254 args[0].c_str(), err.c_str()); in PatchPartitionFn()
257 auto source = Partition::Parse(args[1], &err); in PatchPartitionFn()
260 args[1].c_str(), err.c_str()); in PatchPartitionFn()
723 std::string err; in RebootNowFn() local
724 if (!read_bootloader_message_from(&boot, filename, &err)) { in RebootNowFn()
725 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err; in RebootNowFn()
729 if (!write_bootloader_message_to(boot, filename, &err)) { in RebootNowFn()
730 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err; in RebootNowFn()
767 std::string err; in SetStageFn() local
768 if (!read_bootloader_message_from(&boot, filename, &err)) { in SetStageFn()
769 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err; in SetStageFn()
773 if (!write_bootloader_message_to(boot, filename, &err)) { in SetStageFn()
774 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err; in SetStageFn()
795 std::string err; in GetStageFn() local
796 if (!read_bootloader_message_from(&boot, filename, &err)) { in GetStageFn()
797 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err; in GetStageFn()