Lines Matching refs:mAccess
319 ServiceManager::ServiceManager(std::unique_ptr<Access>&& access) : mAccess(std::move(access)) { in ServiceManager()
363 auto ctx = mAccess->getCallingContext(); in tryGetService()
378 if (!mAccess->canFind(ctx, name)) { in tryGetService()
416 auto ctx = mAccess->getCallingContext(); in addService()
422 if (!mAccess->canAdd(ctx, name)) { in addService()
508 if (!mAccess->canList(mAccess->getCallingContext())) { in listServices()
535 auto ctx = mAccess->getCallingContext(); in registerForNotifications()
537 if (!mAccess->canFind(ctx, name)) { in registerForNotifications()
581 auto ctx = mAccess->getCallingContext(); in unregisterForNotifications()
583 if (!mAccess->canFind(ctx, name)) { in unregisterForNotifications()
604 auto ctx = mAccess->getCallingContext(); in isDeclared()
606 if (!mAccess->canFind(ctx, name)) { in isDeclared()
619 auto ctx = mAccess->getCallingContext(); in getDeclaredInstances()
629 if (mAccess->canFind(ctx, interface + "/" + instance)) { in getDeclaredInstances()
643 auto ctx = mAccess->getCallingContext(); in updatableViaApex()
645 if (!mAccess->canFind(ctx, name)) { in updatableViaApex()
659 auto ctx = mAccess->getCallingContext(); in getUpdatableNames()
669 if (mAccess->canFind(ctx, name)) { in getUpdatableNames()
683 auto ctx = mAccess->getCallingContext(); in getConnectionInfo()
685 if (!mAccess->canFind(ctx, name)) { in getConnectionInfo()
765 auto ctx = mAccess->getCallingContext(); in registerClientCallback()
766 if (!mAccess->canAdd(ctx, name)) { in registerClientCallback()
925 auto ctx = mAccess->getCallingContext(); in tryUnregisterService()
926 if (!mAccess->canAdd(ctx, name)) { in tryUnregisterService()
986 if (!mAccess->canList(mAccess->getCallingContext())) { in getServiceDebugInfo()