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()
141 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
173 EXPECT_CALL(*access, getCallingContext()).WillRepeatedly(Return(Access::CallingContext{})); in TEST()
191 EXPECT_CALL(*access, getCallingContext()) in TEST()
215 EXPECT_CALL(*access, getCallingContext()) in TEST()
241 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
309 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
323 EXPECT_CALL(*access, getCallingContext()).WillOnce(Return(Access::CallingContext{})); in TEST()
DServiceManager.cpp132 auto ctx = mAccess->getCallingContext(); in tryGetService()
183 auto ctx = mAccess->getCallingContext(); in addService()
236 if (!mAccess->canList(mAccess->getCallingContext())) { in listServices()
263 auto ctx = mAccess->getCallingContext(); in registerForNotifications()
297 auto ctx = mAccess->getCallingContext(); in unregisterForNotifications()
319 auto ctx = mAccess->getCallingContext(); in isDeclared()
387 auto ctx = mAccess->getCallingContext(); in registerClientCallback()
521 auto ctx = mAccess->getCallingContext(); in tryUnregisterService()
DAccess.h41 virtual CallingContext getCallingContext();
DAccess.cpp100 Access::CallingContext Access::getCallingContext() { in getCallingContext() function in android::Access