Home
last modified time | relevance | path

Searched refs:sendRemote (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/tests/inheritance/1.0/default/
DFetcher.cpp20 sp<IChild> selectService(bool sendRemote, sp<IChild> &local) { in selectService() argument
22 if (sendRemote) { in selectService()
35 Return<sp<IGrandparent>> Fetcher::getGrandparent(bool sendRemote) { in getGrandparent() argument
36 return selectService(sendRemote, mPrecious); in getGrandparent()
39 Return<sp<IParent>> Fetcher::getParent(bool sendRemote) { in getParent() argument
40 return selectService(sendRemote, mPrecious); in getParent()
43 Return<sp<IChild>> Fetcher::getChild(bool sendRemote) { in getChild() argument
44 return selectService(sendRemote, mPrecious); in getChild()
DFetcher.h28 Return<sp<IGrandparent>> getGrandparent(bool sendRemote) override;
29 Return<sp<IParent>> getParent(bool sendRemote) override;
30 Return<sp<IChild>> getChild(bool sendRemote) override;
/hardware/interfaces/tests/inheritance/1.0/
DIFetcher.hal25 getGrandparent(bool sendRemote) generates (IGrandparent parent);
26 getParent(bool sendRemote) generates (IParent parent);
27 getChild(bool sendRemote) generates (IChild child);