HomeSort by relevance Sort by last modified time
    Searched refs:userSerial (Results 1 - 14 of 14) sorted by null

  /system/vold/binder/android/os/
IVold.aidl 30 void onUserAdded(int userId, int userSerial);
84 void createUserKey(int userId, int userSerial, boolean ephemeral);
87 void addUserKeyAuth(int userId, int userSerial, @utf8InCpp String token, @utf8InCpp String secret);
90 void unlockUserKey(int userId, int userSerial, @utf8InCpp String token, @utf8InCpp String secret);
93 void prepareUserStorage(@nullable @utf8InCpp String uuid, int userId, int userSerial, int storageFlags);
  /frameworks/base/services/core/java/com/android/server/pm/
UserDataPreparer.java 69 void prepareUserData(int userId, int userSerial, int flags) {
74 prepareUserDataLI(volumeUuid, userId, userSerial, flags, true);
79 private void prepareUserDataLI(String volumeUuid, int userId, int userSerial, int flags,
85 storage.prepareUserStorage(volumeUuid, userId, userSerial, flags);
88 enforceSerialNumber(getDataUserDeDirectory(volumeUuid, userId), userSerial);
90 enforceSerialNumber(getDataSystemDeDirectory(userId), userSerial);
94 enforceSerialNumber(getDataUserCeDirectory(volumeUuid, userId), userSerial);
96 enforceSerialNumber(getDataSystemCeDirectory(userId), userSerial);
100 mInstaller.createUserData(volumeUuid, userId, userSerial, flags);
116 prepareUserDataLI(volumeUuid, userId, userSerial,
    [all...]
Installer.java 395 public void createUserData(String uuid, int userId, int userSerial, int flags)
399 mInstalld.createUserData(uuid, userId, userSerial, flags);
UserManagerService.java     [all...]
  /frameworks/base/services/core/java/com/android/server/display/
PersistentDataStore.java 282 public void setBrightnessConfigurationForUser(BrightnessConfiguration c, int userSerial,
285 if (mBrightnessConfigurations.setBrightnessConfigurationForUser(c, userSerial,
291 public BrightnessConfiguration getBrightnessConfiguration(int userSerial) {
293 return mBrightnessConfigurations.getBrightnessConfiguration(userSerial);
599 int userSerial, String packageName) {
600 BrightnessConfiguration currentConfig = mConfigurations.get(userSerial);
604 mPackageNames.remove(userSerial);
606 mPackageNames.put(userSerial, packageName);
608 mTimeStamps.put(userSerial, System.currentTimeMillis());
609 mConfigurations.put(userSerial, c)
    [all...]
DisplayManagerService.java 375 final int userSerial = getUserManager().getUserSerialNumber(newUserId);
380 mPersistentDataStore.getBrightnessConfiguration(userSerial);
    [all...]
  /system/vold/
VoldNativeService.h 40 binder::Status onUserAdded(int32_t userId, int32_t userSerial);
101 binder::Status createUserKey(int32_t userId, int32_t userSerial, bool ephemeral);
104 binder::Status addUserKeyAuth(int32_t userId, int32_t userSerial,
108 binder::Status unlockUserKey(int32_t userId, int32_t userSerial,
113 int32_t userId, int32_t userSerial, int32_t flags);
VoldNativeService.cpp 250 binder::Status VoldNativeService::onUserAdded(int32_t userId, int32_t userSerial) {
254 return translate(VolumeManager::Instance()->onUserAdded(userId, userSerial));
695 binder::Status VoldNativeService::createUserKey(int32_t userId, int32_t userSerial,
700 return translateBool(e4crypt_vold_create_user_key(userId, userSerial, ephemeral));
710 binder::Status VoldNativeService::addUserKeyAuth(int32_t userId, int32_t userSerial,
715 return translateBool(e4crypt_add_user_key_auth(userId, userSerial, token, secret));
725 binder::Status VoldNativeService::unlockUserKey(int32_t userId, int32_t userSerial,
730 return translateBool(e4crypt_unlock_user_key(userId, userSerial, token, secret));
741 int32_t userId, int32_t userSerial, int32_t flags) {
748 return translateBool(e4crypt_prepare_user_storage(uuid_, userId, userSerial, flags))
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
IconCache.java 232 long userSerial = mUserManager.getSerialNumberForUser(user);
234 addIconToDBAndMemCache(app, info, userSerial, false /*replace existing*/);
246 long userSerial = mUserManager.getSerialNumberForUser(user);
249 new String[]{packageName + "/%", Long.toString(userSerial)});
280 long userSerial = mUserManager.getSerialNumberForUser(user);
302 new String[]{Long.toString(userSerial)});
358 new SerializedIconUpdateTask(userSerial, pkgInfoMap,
370 PackageInfo info, long userSerial, boolean replaceExisting) {
394 addIconToDB(values, app.getComponentName(), info, userSerial);
402 PackageInfo info, long userSerial) {
    [all...]
WidgetPreviewLoader.java 158 private void removePackage(String packageName, UserHandle user, long userSerial) {
165 new String[]{packageName, Long.toString(userSerial)});
  /frameworks/native/cmds/installd/binder/android/os/
IInstalld.aidl 21 void createUserData(@nullable @utf8InCpp String uuid, int userId, int userSerial, int flags);
  /frameworks/native/cmds/installd/
InstalldNativeService.h 44 int32_t userSerial, int32_t flags);
InstalldNativeService.cpp     [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-0.jar 

Completed in 273 milliseconds