Home
last modified time | relevance | path

Searched refs:projectId (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/core/jni/
H A Dandroid_os_storage_StorageManager.cpp32 jstring path, jlong projectId) { in android_os_storage_StorageManager_setQuotaProjectId() argument
43 if (projectId > UINT32_MAX) { in android_os_storage_StorageManager_setQuotaProjectId()
44 LOG(ERROR) << "Invalid project id: " << projectId; in android_os_storage_StorageManager_setQuotaProjectId()
62 fsx.fsx_projid = projectId; in android_os_storage_StorageManager_setQuotaProjectId()
/aosp14/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java2484 private static native boolean setQuotaProjectId(String path, long projectId); in setQuotaProjectId() argument
2486 private static long getProjectIdForUser(int userId, int projectId) { in getProjectIdForUser() argument
2488 return userId * PER_USER_RANGE + projectId; in getProjectIdForUser()
2520 long projectId; in updateExternalStorageFileQuotaType() local
2545 projectId = getProjectIdForUser(userId, PROJECT_ID_EXT_DEFAULT); in updateExternalStorageFileQuotaType()
2548 projectId = getProjectIdForUser(userId, PROJECT_ID_EXT_MEDIA_AUDIO); in updateExternalStorageFileQuotaType()
2551 projectId = getProjectIdForUser(userId, PROJECT_ID_EXT_MEDIA_VIDEO); in updateExternalStorageFileQuotaType()
2554 projectId = getProjectIdForUser(userId, PROJECT_ID_EXT_MEDIA_IMAGE); in updateExternalStorageFileQuotaType()
2559 if (!setQuotaProjectId(filePath, projectId)) { in updateExternalStorageFileQuotaType()