Home
last modified time | relevance | path

Searched refs:getCallingContext (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/cmds/servicemanager/
Dtest_sm.cpp54 MOCK_METHOD0(getCallingContext, CallingContext());
69 ON_CALL(*access, getCallingContext()).WillByDefault(Return(Access::CallingContext{})); in getPermissiveServiceManager()
117 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{ in TEST()
161 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
193 EXPECT_CALL(*access, getCallingContext()).WillRepeatedly(Return(Access::CallingContext{})); in TEST()
211 EXPECT_CALL(*access, getCallingContext()) in TEST()
235 EXPECT_CALL(*access, getCallingContext()) in TEST()
261 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
329 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
343 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
DServiceManager.cpp196 auto ctx = mAccess->getCallingContext(); in tryGetService()
247 auto ctx = mAccess->getCallingContext(); in addService()
302 if (!mAccess->canList(mAccess->getCallingContext())) { in listServices()
329 auto ctx = mAccess->getCallingContext(); in registerForNotifications()
365 auto ctx = mAccess->getCallingContext(); in unregisterForNotifications()
387 auto ctx = mAccess->getCallingContext(); in isDeclared()
402 auto ctx = mAccess->getCallingContext(); in getDeclaredInstances()
426 auto ctx = mAccess->getCallingContext(); in updatableViaApex()
499 auto ctx = mAccess->getCallingContext(); in registerClientCallback()
634 auto ctx = mAccess->getCallingContext(); in tryUnregisterService()
[all …]
DAccess.h41 virtual CallingContext getCallingContext();
DAccess.cpp100 Access::CallingContext Access::getCallingContext() { in getCallingContext() function in android::Access