Lines Matching refs:mAccess
152 ServiceManager::ServiceManager(std::unique_ptr<Access>&& access) : mAccess(std::move(access)) { in ServiceManager()
196 auto ctx = mAccess->getCallingContext(); in tryGetService()
214 if (!mAccess->canFind(ctx, name)) { in tryGetService()
247 auto ctx = mAccess->getCallingContext(); in addService()
254 if (!mAccess->canAdd(ctx, name)) { in addService()
302 if (!mAccess->canList(mAccess->getCallingContext())) { in listServices()
329 auto ctx = mAccess->getCallingContext(); in registerForNotifications()
331 if (!mAccess->canFind(ctx, name)) { in registerForNotifications()
365 auto ctx = mAccess->getCallingContext(); in unregisterForNotifications()
367 if (!mAccess->canFind(ctx, name)) { in unregisterForNotifications()
387 auto ctx = mAccess->getCallingContext(); in isDeclared()
389 if (!mAccess->canFind(ctx, name)) { in isDeclared()
402 auto ctx = mAccess->getCallingContext(); in getDeclaredInstances()
412 if (mAccess->canFind(ctx, interface + "/" + instance)) { in getDeclaredInstances()
426 auto ctx = mAccess->getCallingContext(); in updatableViaApex()
428 if (!mAccess->canFind(ctx, name)) { in updatableViaApex()
499 auto ctx = mAccess->getCallingContext(); in registerClientCallback()
500 if (!mAccess->canAdd(ctx, name)) { in registerClientCallback()
634 auto ctx = mAccess->getCallingContext(); in tryUnregisterService()
635 if (!mAccess->canAdd(ctx, name)) { in tryUnregisterService()
685 if (!mAccess->canList(mAccess->getCallingContext())) { in getServiceDebugInfo()