aboutsummaryrefslogtreecommitdiff
path: root/en/devices/architecture/hidl
diff options
context:
space:
mode:
authorAndroid Partner Docs <noreply@android.com>2018-08-13 10:09:53 -0700
committerClay Murphy <claym@google.com>2018-08-13 10:42:59 -0700
commit1731f4ad91051c17b9c66913c56283c55751df41 (patch)
tree59d30bb760f8a421a134b30b0b3fe429b6918516 /en/devices/architecture/hidl
parentabcf037c51ed49ed1a33187b9329beadce22271a (diff)
downloadsource.android.com-1731f4ad91051c17b9c66913c56283c55751df41.tar.gz
Docs: Changes to source.android.com
- 208499135 Devsite localized content from translation request 952101. by Android Partner Docs <noreply@android.com> - 208499120 Devsite localized content from translation request 956390. by Android Partner Docs <noreply@android.com> - 208289251 Updated Develop CTS page on source.android.com to reflect... by Android Partner Docs <noreply@android.com> - 208275837 Explain a complete stack unwind, showing all the differen... by Android Partner Docs <noreply@android.com> - 208275639 Removing bug reporting from Jack article by Heidi von Markham <hvm@google.com> - 208269325 Switch to gdbclient.py. by Android Partner Docs <noreply@android.com> - 208122929 Devsite localized content from translation request 958914. by Android Partner Docs <noreply@android.com> - 208122926 Devsite localized content from translation request 960485. by Android Partner Docs <noreply@android.com> - 208122918 Devsite localized content from translation request 955354. by Android Partner Docs <noreply@android.com> - 208122894 Devsite localized content from translation request 958911. by Android Partner Docs <noreply@android.com> - 208122890 Devsite localized content from translation request 941625. by Android Partner Docs <noreply@android.com> - 208122882 Devsite localized content from translation request 961382. by Android Partner Docs <noreply@android.com> - 208106869 Update links for maintanability by Kenneth Lau <kennethlau@google.com> - 208052953 Fix command path in terminal sample by Christina Nguyen <cqn@google.com> - 207987258 Update java pseudocode by Android Partner Docs <noreply@android.com> - 207947311 removing todos, general formatting updates, table tweaks by Heidi von Markham <hvm@google.com> PiperOrigin-RevId: 208499135 Change-Id: I3d2bdb35299b34fa43360469b9496fdacad7a533
Diffstat (limited to 'en/devices/architecture/hidl')
-rw-r--r--en/devices/architecture/hidl/services.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/en/devices/architecture/hidl/services.html b/en/devices/architecture/hidl/services.html
index 1d2deccb..c7ddd8f6 100644
--- a/en/devices/architecture/hidl/services.html
+++ b/en/devices/architecture/hidl/services.html
@@ -55,8 +55,8 @@ version, calling <code>getService</code> on the desired HAL class:</p>
sp&lt;V1_1::IFooService&gt; service = V1_1::IFooService::getService();
sp&lt;V1_1::IFooService&gt; alternateService = V1_1::IFooService::getService("another_foo_service");
// Java
-V1_1.IFooService; service = V1_1.IFooService.getService(true /* retry */);
-V1_1.IFooService; alternateService = V1_1.IFooService.getService("another", true /* retry */);
+V1_1.IFooService service = V1_1.IFooService.getService(true /* retry */);
+V1_1.IFooService alternateService = V1_1.IFooService.getService("another", true /* retry */);
</pre>
<p>Each version of a HIDL interface is treated as a separate interface. Thus,