Lines Matching refs:old_m
99 for (const auto& old_m : older.AsInterface()->GetMethods()) { in are_compatible_interfaces() local
100 const auto found = new_methods.find(old_m->Signature()); in are_compatible_interfaces()
102 AIDL_ERROR(old_m) << "Removed or changed method: " << older.GetCanonicalName() << "." in are_compatible_interfaces()
103 << old_m->Signature(); in are_compatible_interfaces()
113 if (old_m->IsOneway() != new_m->IsOneway()) { in are_compatible_interfaces()
114 AIDL_ERROR(new_m) << "Oneway attribute " << (old_m->IsOneway() ? "removed" : "added") << ": " in are_compatible_interfaces()
115 << older.GetCanonicalName() << "." << old_m->Signature(); in are_compatible_interfaces()
119 if (old_m->GetId() != new_m->GetId()) { in are_compatible_interfaces()
121 << old_m->Signature() << " is changed from " << old_m->GetId() << " to " in are_compatible_interfaces()
126 compatible &= are_compatible_types(old_m->GetType(), new_m->GetType()); in are_compatible_interfaces()
128 const auto& old_args = old_m->GetArguments(); in are_compatible_interfaces()