Home
last modified time | relevance | path

Searched refs:setDeathToken (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/services/surfaceflinger/tests/
DIPC_test.cpp75 virtual status_t setDeathToken(sp<IBinder>& token) = 0;
93 status_t setDeathToken(sp<IBinder>& token) { in setDeathToken() function in android::test::BpIPCTest
94 return callRemote<decltype(&IIPCTest::setDeathToken)>(Tag::SetDeathToken, token); in setDeathToken()
134 status_t setDeathToken(sp<IBinder>& token) override { in setDeathToken() function in android::test::BnIPCTest
196 return callLocal(data, reply, &IIPCTest::setDeathToken); in onTransact()
294 remote->setDeathToken(mDeathRecipient); in initRemoteService()
/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp245 virtual status_t setDeathToken(const sp<IBinder>& token) = 0;
281 status_t setDeathToken(const sp<IBinder>& token) override { in setDeathToken() function in android::tests::BpSafeInterfaceTest
283 return callRemote<decltype(&ISafeInterfaceTest::setDeathToken)>(Tag::SetDeathToken, token); in setDeathToken()
395 status_t setDeathToken(const sp<IBinder>& token) override { in setDeathToken() function in android::tests::BnSafeInterfaceTest
510 return callLocal(data, reply, &ISafeInterfaceTest::setDeathToken); in onTransact()
617 iface->setDeathToken(new BBinder); in getRemoteService()