Home
last modified time | relevance | path

Searched refs:AIBinder (Results 1 – 25 of 32) sorted by relevance

12

/packages/services/Car/cpp/watchdog/server/src/
DAIBinderDeathRegistrationWrapper.h33 virtual ndk::ScopedAStatus linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
39 virtual ndk::ScopedAStatus unlinkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
45 ndk::ScopedAStatus linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
47 ndk::ScopedAStatus unlinkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
DAIBinderDeathRegistrationWrapper.cpp25 ScopedAStatus AIBinderDeathRegistrationWrapper::linkToDeath(AIBinder* binder, in linkToDeath()
30 ScopedAStatus AIBinderDeathRegistrationWrapper::unlinkToDeath(AIBinder* binder, in unlinkToDeath()
DWatchdogProcessService.cpp360 AIBinder* aiBinder = mMonitor->asBinder().get(); in registerMonitor()
367 AIBinder* aiBinder = binder.get(); in registerMonitor()
401 AIBinder* aiBinder = binder.get(); in unregisterMonitor()
725 AIBinder* aiBinder = mMonitor->asBinder().get(); in terminate()
857 AIBinder* aiBinder, in findClientAndProcessLocked()
971 if (AIBinder* aiBinder = mMonitor->asBinder().get(); in handleBinderDeath()
1357 AIBinder* WatchdogProcessService::ClientInfo::getAIBinder() const { in getAIBinder()
1367 AIBinder* aiBinder = getAIBinder(); in linkToDeath()
1379 AIBinder* aiBinder = getAIBinder(); in unlinkToDeath()
DWatchdogServiceHelper.cpp84 AIBinder* aiBinder = binder.get(); in registerService()
222 AIBinder* aiBinder = binder.get(); in unregisterServiceLocked()
/packages/modules/Virtualization/vm_payload/include/
Dvm_payload.h28 typedef struct AIBinder AIBinder; typedef
83 AIBinder* _Nonnull service, uint32_t port,
/packages/services/Car/cpp/powerpolicy/server/src/
DCarPowerPolicyServer.h259 void handleClientBinderDeath(const AIBinder* client) EXCLUDES(mMutex);
272 const AIBinder* clientId;
279 virtual binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
281 virtual binder_status_t unlinkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
287 binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
289 binder_status_t unlinkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
299 bool isRegisteredLocked(const AIBinder* binder) REQUIRES(mMutex);
374 std::unordered_map<const AIBinder*, std::unique_ptr<OnClientBinderDiedContext>>
DCarPowerPolicyServer.cpp109 const std::vector<CallbackInfo>& callbacks, const AIBinder* binder) { in lookupPowerPolicyChangeCallback()
416 AIBinder* clientId = binder.get(); in registerPowerPolicyChangeCallback()
459 AIBinder* clientId = callback->asBinder().get(); in unregisterPowerPolicyChangeCallback()
781 AIBinder* binderCarService = AServiceManager_checkService(kCarServiceInterface); in init()
860 void CarPowerPolicyServer::handleClientBinderDeath(const AIBinder* clientId) { in handleClientBinderDeath()
1093 bool CarPowerPolicyServer::isRegisteredLocked(const AIBinder* binder) { in isRegisteredLocked()
1313 AIBinder* binder, AIBinder_DeathRecipient* recipient, void* cookie) { in linkToDeath()
1318 AIBinder* binder, AIBinder_DeathRecipient* recipient, void* cookie) { in unlinkToDeath()
/packages/services/Car/service/jni/evs/
DLinkUnlinkToDeathBase.h27 virtual binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
29 virtual binder_status_t unlinkToDeath(AIBinder* binder) = 0;
DEvsServiceContext.h54 binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
56 binder_status_t unlinkToDeath(AIBinder* binder) override;
DEvsServiceContext.cpp115 AIBinder* binder = ::AServiceManager_checkService(mServiceName.c_str()); in init()
125 binder_status_t ProdLinkUnlinkToDeath::linkToDeath(AIBinder* binder, in linkToDeath()
133 binder_status_t ProdLinkUnlinkToDeath::unlinkToDeath(AIBinder* binder) { in unlinkToDeath()
/packages/services/Car/service/jni/test-libs/
DMockEvsServiceFactory.cpp42 binder_status_t MockLinkUnlinkToDeath::linkToDeath(AIBinder*, AIBinder_DeathRecipient*, in linkToDeath() argument
48 binder_status_t MockLinkUnlinkToDeath::unlinkToDeath(AIBinder*) { in unlinkToDeath() argument
DMockEvsServiceFactory.h43 binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
45 binder_status_t unlinkToDeath(AIBinder* binder) override;
/packages/services/Car/cpp/watchdog/server/tests/
DMockAIBinderDeathRegistrationWrapper.h37 MOCK_METHOD(ndk::ScopedAStatus, linkToDeath, (AIBinder*, AIBinder_DeathRecipient*, void*),
39 MOCK_METHOD(ndk::ScopedAStatus, unlinkToDeath, (AIBinder*, AIBinder_DeathRecipient*, void*),
DWatchdogProcessServiceTest.cpp230 void expectLinkToDeath(AIBinder* aiBinder, ScopedAStatus expectedStatus) { in expectLinkToDeath()
236 void expectUnlinkToDeath(AIBinder* aiBinder, ScopedAStatus expectedStatus) { in expectUnlinkToDeath()
242 void expectNoUnlinkToDeath(AIBinder* aiBinder) { in expectNoUnlinkToDeath()
419 AIBinder* aiBinder = client->asBinder().get(); in TEST_F()
447 AIBinder* aiBinder = client->asBinder().get(); in TEST_F()
530 AIBinder* aiBinder = monitor->asBinder().get(); in TEST_F()
549 AIBinder* aiBinder = monitor->asBinder().get(); in TEST_F()
DWatchdogServiceHelperTest.cpp138 void expectLinkToDeath(AIBinder* aiBinder, ndk::ScopedAStatus expectedStatus) { in expectLinkToDeath()
144 void expectUnlinkToDeath(AIBinder* aiBinder, ndk::ScopedAStatus expectedStatus) { in expectUnlinkToDeath()
150 void expectNoLinkToDeath(AIBinder* aiBinder) { in expectNoLinkToDeath()
156 void expectNoUnlinkToDeath(AIBinder* aiBinder) { in expectNoUnlinkToDeath()
DIoOveruseMonitorTest.cpp282 void expectLinkToDeath(AIBinder* aiBinder, ndk::ScopedAStatus expectedStatus) { in expectLinkToDeath()
288 void expectUnlinkToDeath(AIBinder* aiBinder, ndk::ScopedAStatus expectedStatus) { in expectUnlinkToDeath()
294 void expectNoUnlinkToDeath(AIBinder* aiBinder) { in expectNoUnlinkToDeath()
1068 AIBinder* binder = mockResourceOveruseListener->asBinder().get(); in TEST_F()
/packages/modules/Virtualization/compos/src/
Dcompsvc_main.rs32 use vm_payload_bindgen::{AIBinder, AVmPayload_notifyPayloadReady, AVmPayload_runVsockRpcServer};
55 let service = service.as_native_mut() as *mut AIBinder; in try_main()
/packages/services/Car/cpp/vhal/client/include/
DAidlVhalClient.h120 virtual binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
122 virtual binder_status_t unlinkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
128 binder_status_t linkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
130 binder_status_t unlinkToDeath(AIBinder* binder, AIBinder_DeathRecipient* recipient,
/packages/services/Car/cpp/powerpolicy/server/tests/
DCarPowerPolicyServerTest.cpp214 void expectLinkToDeathStatus(AIBinder* binder, status_t linkToDeathResult) { in expectLinkToDeathStatus()
280 MOCK_METHOD(binder_status_t, linkToDeath, (AIBinder*, AIBinder_DeathRecipient*, void*),
282 MOCK_METHOD(binder_status_t, unlinkToDeath, (AIBinder*, AIBinder_DeathRecipient*, void*),
285 void expectLinkToDeathStatus(AIBinder* binder, binder_status_t linkToDeathResult) { in expectLinkToDeathStatus()
288 Invoke([this, linkToDeathResult](AIBinder*, AIBinder_DeathRecipient*, in expectLinkToDeathStatus()
296 Invoke([this](AIBinder*, AIBinder_DeathRecipient*, void* cookie) { in expectLinkToDeathStatus() argument
/packages/modules/Virtualization/vm_payload/src/
Dlib.rs23 unstable_api::{new_spibinder, AIBinder},
126 service: *mut AIBinder, in AVmPayload_runVsockRpcServer() argument
139 service: *mut AIBinder, in try_run_vsock_server() argument
/packages/modules/Virtualization/service_vm/test_apk/src/native/
Dmain.rs35 AIBinder, AVmAttestationResult, AVmAttestationResult_free,
65 let service = service.as_native_mut() as *mut AIBinder; in try_main()
/packages/modules/Connectivity/service/libconnectivity/src/
Dconnectivity_native.cpp27 ndk::SpAIBinder sBinder = ndk::SpAIBinder(reinterpret_cast<AIBinder*>( in getBinder()
/packages/modules/Virtualization/virtualizationmanager/
Dfuzzer.cpp85 AIBinder* binder = ARpcSession_setupUnixDomainBootstrapClient(session.get(), fd); in connect_service()
/packages/modules/Virtualization/demo_native/
Dmain.cpp124 AIBinder* binder = ARpcSession_setupUnixDomainBootstrapClient(session.get(), fd); in connect_service()
330 AIBinder* binder = ARpcSession_setupPreconnectedClient( in connect_to_vm_payload()
/packages/services/Car/cpp/evs/apps/default/src/
DEvsStats.cpp123 AIBinder* binder; in getCarTelemetry()

12