Searched refs:getCallingContext (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/cmds/servicemanager/ |
D | test_sm.cpp | 54 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()
|
D | ServiceManager.cpp | 132 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()
|
D | Access.h | 41 virtual CallingContext getCallingContext();
|
D | Access.cpp | 100 Access::CallingContext Access::getCallingContext() { in getCallingContext() function in android::Access
|