Add arg, return val name to method in .vts files

Bug: 111372070
Test: make vts

Change-Id: If6f4842ea768dceace7603a07552d91e3230cbaa
diff --git a/Interface.cpp b/Interface.cpp
index 9e53e1f..e0c99d6 100644
--- a/Interface.cpp
+++ b/Interface.cpp
@@ -931,6 +931,7 @@
         for (const auto &result : method->results()) {
             out << "return_type_hidl: {\n";
             out.indent();
+            out << "name: \"" << result->name() << "\"\n";
             result->type().emitVtsAttributeType(out);
             out.unindent();
             out << "}\n";
@@ -939,6 +940,7 @@
         for (const auto &arg : method->args()) {
             out << "arg: {\n";
             out.indent();
+            out << "name: \"" << arg->name() << "\"\n";
             arg->type().emitVtsAttributeType(out);
             out.unindent();
             out << "}\n";