Search in sources :

Example 31 with IntArray

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

the class UserController method getUsersToStopLocked.

/**
     * Determines the list of users that should be stopped together with the specified
     * {@code userId}. The returned list includes {@code userId}.
     */
@NonNull
private int[] getUsersToStopLocked(int userId) {
    int startedUsersSize = mStartedUsers.size();
    IntArray userIds = new IntArray();
    userIds.add(userId);
    synchronized (mUserProfileGroupIdsSelfLocked) {
        int userGroupId = mUserProfileGroupIdsSelfLocked.get(userId, UserInfo.NO_PROFILE_GROUP_ID);
        for (int i = 0; i < startedUsersSize; i++) {
            UserState uss = mStartedUsers.valueAt(i);
            int startedUserId = uss.mHandle.getIdentifier();
            // Skip unrelated users (profileGroupId mismatch)
            int startedUserGroupId = mUserProfileGroupIdsSelfLocked.get(startedUserId, UserInfo.NO_PROFILE_GROUP_ID);
            boolean sameGroup = (userGroupId != UserInfo.NO_PROFILE_GROUP_ID) && (userGroupId == startedUserGroupId);
            // userId has already been added
            boolean sameUserId = startedUserId == userId;
            if (!sameGroup || sameUserId) {
                continue;
            }
            userIds.add(startedUserId);
        }
    }
    return userIds.toArray();
}
Also used : IntArray(android.util.IntArray) SparseIntArray(android.util.SparseIntArray) NonNull(android.annotation.NonNull)

Example 32 with IntArray

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

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 33 with IntArray

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

the class UserManagerService method getProfilesLU.

/** Assume permissions already checked and caller's identity cleared */
private List<UserInfo> getProfilesLU(int userId, boolean enabledOnly, boolean fullInfo) {
    IntArray profileIds = getProfileIdsLU(userId, enabledOnly);
    ArrayList<UserInfo> users = new ArrayList<>(profileIds.size());
    for (int i = 0; i < profileIds.size(); i++) {
        int profileId = profileIds.get(i);
        UserInfo userInfo = mUsers.get(profileId).info;
        // If full info is not required - clear PII data to prevent 3P apps from reading it
        if (!fullInfo) {
            userInfo = new UserInfo(userInfo);
            userInfo.name = null;
            userInfo.iconPath = null;
        } else {
            userInfo = userWithName(userInfo);
        }
        users.add(userInfo);
    }
    return users;
}
Also used : IntArray(android.util.IntArray) SparseIntArray(android.util.SparseIntArray) ArrayList(java.util.ArrayList) UserInfo(android.content.pm.UserInfo)

Example 34 with IntArray

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

the class RegisteredServicesCache method updateServices.

public void updateServices(int userId) {
    if (DEBUG) {
        Slog.d(TAG, "updateServices u" + userId);
    }
    List<ServiceInfo<V>> allServices;
    synchronized (mServicesLock) {
        final UserServices<V> user = findOrCreateUserLocked(userId);
        // If services haven't been initialized yet - no updates required
        if (user.services == null) {
            return;
        }
        allServices = new ArrayList<>(user.services.values());
    }
    IntArray updatedUids = null;
    for (ServiceInfo<V> service : allServices) {
        int versionCode = service.componentInfo.applicationInfo.versionCode;
        String pkg = service.componentInfo.packageName;
        ApplicationInfo newAppInfo = null;
        try {
            newAppInfo = mContext.getPackageManager().getApplicationInfoAsUser(pkg, 0, userId);
        } catch (NameNotFoundException e) {
        // Package uninstalled - treat as null app info
        }
        // If package updated or removed
        if ((newAppInfo == null) || (newAppInfo.versionCode != versionCode)) {
            if (DEBUG) {
                Slog.d(TAG, "Package " + pkg + " uid=" + service.uid + " updated. New appInfo: " + newAppInfo);
            }
            if (updatedUids == null) {
                updatedUids = new IntArray();
            }
            updatedUids.add(service.uid);
        }
    }
    if (updatedUids != null && updatedUids.size() > 0) {
        int[] updatedUidsArray = updatedUids.toArray();
        generateServicesMap(updatedUidsArray, userId);
    }
}
Also used : IntArray(android.util.IntArray) NameNotFoundException(android.content.pm.PackageManager.NameNotFoundException)

Example 35 with IntArray

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

the class NetworkStats method startUserUidEnumeration.

/**
     * Starts uid enumeration for current user.
     * @throws RemoteException
     */
void startUserUidEnumeration() throws RemoteException {
    // TODO: getRelevantUids should be sensitive to time interval. When that's done,
    //       the filtering logic below can be removed.
    int[] uids = mSession.getRelevantUids();
    // Filtering of uids with empty history.
    IntArray filteredUids = new IntArray(uids.length);
    for (int uid : uids) {
        try {
            NetworkStatsHistory history = mSession.getHistoryIntervalForUid(mTemplate, uid, android.net.NetworkStats.SET_ALL, android.net.NetworkStats.TAG_NONE, NetworkStatsHistory.FIELD_ALL, mStartTimeStamp, mEndTimeStamp);
            if (history != null && history.size() > 0) {
                filteredUids.add(uid);
            }
        } catch (RemoteException e) {
            Log.w(TAG, "Error while getting history of uid " + uid, e);
        }
    }
    mUids = filteredUids.toArray();
    mUidOrUidIndex = -1;
    stepHistory();
}
Also used : IntArray(android.util.IntArray) NetworkStatsHistory(android.net.NetworkStatsHistory) RemoteException(android.os.RemoteException)

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