Lines Matching refs:that
49 bool InstallPlan::operator==(const InstallPlan& that) const { in operator ==()
50 return ((is_resume == that.is_resume) && in operator ==()
51 (download_url == that.download_url) && (payloads == that.payloads) && in operator ==()
52 (source_slot == that.source_slot) && in operator ==()
53 (target_slot == that.target_slot) && (partitions == that.partitions)); in operator ==()
56 bool InstallPlan::operator!=(const InstallPlan& that) const { in operator !=()
57 return !((*this) == that); in operator !=()
137 const InstallPlan::Partition& that) const { in operator ==()
138 return (name == that.name && source_path == that.source_path && in operator ==()
139 source_size == that.source_size && source_hash == that.source_hash && in operator ==()
140 target_path == that.target_path && target_size == that.target_size && in operator ==()
141 target_hash == that.target_hash && in operator ==()
142 run_postinstall == that.run_postinstall && in operator ==()
143 postinstall_path == that.postinstall_path && in operator ==()
144 filesystem_type == that.filesystem_type && in operator ==()
145 postinstall_optional == that.postinstall_optional); in operator ==()