Search in sources :

Example 36 with IntArray

use of android.util.IntArray in project android_frameworks_base by crdroidandroid.

the class UserManagerService method getProfileIdsLU.

/**
     *  Assume permissions already checked and caller's identity cleared
     */
private IntArray getProfileIdsLU(int userId, boolean enabledOnly) {
    UserInfo user = getUserInfoLU(userId);
    IntArray result = new IntArray(mUsers.size());
    if (user == null) {
        // Probably a dying user
        return result;
    }
    final int userSize = mUsers.size();
    for (int i = 0; i < userSize; i++) {
        UserInfo profile = mUsers.valueAt(i).info;
        if (!isProfileOf(user, profile)) {
            continue;
        }
        if (enabledOnly && !profile.isEnabled()) {
            continue;
        }
        if (mRemovingUserIds.get(profile.id)) {
            continue;
        }
        if (profile.partial) {
            continue;
        }
        result.add(profile.id);
    }
    return result;
}
Also used : IntArray(android.util.IntArray) SparseIntArray(android.util.SparseIntArray) UserInfo(android.content.pm.UserInfo)

Example 37 with IntArray

use of android.util.IntArray in project android_frameworks_base by crdroidandroid.

the class TelecomLoaderService method registerDefaultAppProviders.

private void registerDefaultAppProviders() {
    final PackageManagerInternal packageManagerInternal = LocalServices.getService(PackageManagerInternal.class);
    // Set a callback for the package manager to query the default sms app.
    packageManagerInternal.setSmsAppPackagesProvider(new PackageManagerInternal.PackagesProvider() {

        @Override
        public String[] getPackages(int userId) {
            synchronized (mLock) {
                if (mServiceConnection == null) {
                    if (mDefaultSmsAppRequests == null) {
                        mDefaultSmsAppRequests = new IntArray();
                    }
                    mDefaultSmsAppRequests.add(userId);
                    return null;
                }
            }
            ComponentName smsComponent = SmsApplication.getDefaultSmsApplication(mContext, true);
            if (smsComponent != null) {
                return new String[] { smsComponent.getPackageName() };
            }
            return null;
        }
    });
    // Set a callback for the package manager to query the default dialer app.
    packageManagerInternal.setDialerAppPackagesProvider(new PackageManagerInternal.PackagesProvider() {

        @Override
        public String[] getPackages(int userId) {
            synchronized (mLock) {
                if (mServiceConnection == null) {
                    if (mDefaultDialerAppRequests == null) {
                        mDefaultDialerAppRequests = new IntArray();
                    }
                    mDefaultDialerAppRequests.add(userId);
                    return null;
                }
            }
            String packageName = DefaultDialerManager.getDefaultDialerApplication(mContext);
            if (packageName != null) {
                return new String[] { packageName };
            }
            return null;
        }
    });
    // Set a callback for the package manager to query the default sim call manager.
    packageManagerInternal.setSimCallManagerPackagesProvider(new PackageManagerInternal.PackagesProvider() {

        @Override
        public String[] getPackages(int userId) {
            synchronized (mLock) {
                if (mServiceConnection == null) {
                    if (mDefaultSimCallManagerRequests == null) {
                        mDefaultSimCallManagerRequests = new IntArray();
                    }
                    mDefaultSimCallManagerRequests.add(userId);
                    return null;
                }
            }
            TelecomManager telecomManager = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
            PhoneAccountHandle phoneAccount = telecomManager.getSimCallManager(userId);
            if (phoneAccount != null) {
                return new String[] { phoneAccount.getComponentName().getPackageName() };
            }
            return null;
        }
    });
}
Also used : IntArray(android.util.IntArray) PhoneAccountHandle(android.telecom.PhoneAccountHandle) PackageManagerInternal(android.content.pm.PackageManagerInternal) ComponentName(android.content.ComponentName) TelecomManager(android.telecom.TelecomManager)

Aggregations

IntArray (android.util.IntArray)37 SparseIntArray (android.util.SparseIntArray)13 UserInfo (android.content.pm.UserInfo)8 NonNull (android.annotation.NonNull)5 NameNotFoundException (android.content.pm.PackageManager.NameNotFoundException)5 NetworkStatsHistory (android.net.NetworkStatsHistory)5 RemoteException (android.os.RemoteException)5 AccessibilityNodeInfo (android.view.accessibility.AccessibilityNodeInfo)5 ComponentName (android.content.ComponentName)4 PackageManagerInternal (android.content.pm.PackageManagerInternal)4 PhoneAccountHandle (android.telecom.PhoneAccountHandle)4 TelecomManager (android.telecom.TelecomManager)4 ArrayList (java.util.ArrayList)4