Lines Matching refs:mAccess
88 ServiceManager::ServiceManager(std::unique_ptr<Access>&& access) : mAccess(std::move(access)) { in ServiceManager()
132 auto ctx = mAccess->getCallingContext(); in tryGetService()
150 if (!mAccess->canFind(ctx, name)) { in tryGetService()
183 auto ctx = mAccess->getCallingContext(); in addService()
190 if (!mAccess->canAdd(ctx, name)) { in addService()
236 if (!mAccess->canList(mAccess->getCallingContext())) { in listServices()
263 auto ctx = mAccess->getCallingContext(); in registerForNotifications()
265 if (!mAccess->canFind(ctx, name)) { in registerForNotifications()
297 auto ctx = mAccess->getCallingContext(); in unregisterForNotifications()
299 if (!mAccess->canFind(ctx, name)) { in unregisterForNotifications()
319 auto ctx = mAccess->getCallingContext(); in isDeclared()
321 if (!mAccess->canFind(ctx, name)) { in isDeclared()
387 auto ctx = mAccess->getCallingContext(); in registerClientCallback()
388 if (!mAccess->canAdd(ctx, name)) { in registerClientCallback()
521 auto ctx = mAccess->getCallingContext(); in tryUnregisterService()
522 if (!mAccess->canAdd(ctx, name)) { in tryUnregisterService()