Lines Matching refs:that
43 bool InstallPlan::operator==(const InstallPlan& that) const { in operator ==()
44 return ((is_resume == that.is_resume) && in operator ==()
45 (download_url == that.download_url) && (payloads == that.payloads) && in operator ==()
46 (source_slot == that.source_slot) && in operator ==()
47 (target_slot == that.target_slot) && (partitions == that.partitions)); in operator ==()
50 bool InstallPlan::operator!=(const InstallPlan& that) const { in operator !=()
51 return !((*this) == that); in operator !=()
123 const InstallPlan::Partition& that) const { in operator ==()
124 return (name == that.name && source_path == that.source_path && in operator ==()
125 source_size == that.source_size && source_hash == that.source_hash && in operator ==()
126 target_path == that.target_path && target_size == that.target_size && in operator ==()
127 target_hash == that.target_hash && in operator ==()
128 run_postinstall == that.run_postinstall && in operator ==()
129 postinstall_path == that.postinstall_path && in operator ==()
130 filesystem_type == that.filesystem_type && in operator ==()
131 postinstall_optional == that.postinstall_optional); in operator ==()