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() 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()
|
D | ServiceManager.cpp | 196 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 …]
|
D | Access.h | 41 virtual CallingContext getCallingContext();
|
D | Access.cpp | 100 Access::CallingContext Access::getCallingContext() { in getCallingContext() function in android::Access
|