Lines Matching refs:Partition
49 static bool GenerateTarget(const Partition& target, const FileContents& source_file,
70 static bool ReadPartitionToBuffer(const Partition& partition, FileContents* out, in ReadPartitionToBuffer()
136 static bool WriteBufferToPartition(const FileContents& file_contents, const Partition& partition) { in WriteBufferToPartition()
256 bool PatchPartitionCheck(const Partition& target, const Partition& source) { in PatchPartitionCheck()
268 bool PatchPartition(const Partition& target, const Partition& source, const Value& patch, in PatchPartition()
290 bool FlashPartition(const Partition& partition, const std::string& source_filename) { in FlashPartition()
328 static bool GenerateTarget(const Partition& target, const FileContents& source_file, in GenerateTarget()
426 bool CheckPartition(const Partition& partition) { in CheckPartition()
431 Partition Partition::Parse(const std::string& input_str, std::string* err) { in Parse()
444 return Partition(pieces[1], size, pieces[3]); in Parse()
447 std::string Partition::ToString() const { in ToString()
454 std::ostream& operator<<(std::ostream& os, const Partition& partition) { in operator <<()