Home | History | Annotate | Download | only in storage

Lines Matching defs:StorageManager

95  * StorageManager is the interface to the systems storage service. The storage
108 public class StorageManager {
109 private static final String TAG = "StorageManager";
445 public static StorageManager from(Context context) {
446 return context.getSystemService(StorageManager.class);
450 * Constructs a StorageManager object through which an application can
461 public StorageManager(Context context, Looper looper) throws ServiceNotFoundException {
556 * The OBB will remain mounted for as long as the StorageManager reference
733 if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, volumeUuid)) {
735 } else if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
1148 final IStorageManager storageManager = IStorageManager.Stub.asInterface(
1169 return storageManager.getVolumeList(uid, packageName, flags);
1255 if ((flags & StorageManager.FLAG_ALLOCATE_AGGRESSIVE) != 0) {
1257 } else if ((flags & StorageManager.FLAG_ALLOCATE_DEFY_ALL_RESERVED) != 0) {
1259 } else if ((flags & StorageManager.FLAG_ALLOCATE_DEFY_HALF_RESERVED) != 0) {
1419 IStorageManager storageManager = IStorageManager.Stub.asInterface(
1421 return storageManager.getPasswordType() != CRYPT_TYPE_DEFAULT;
1461 return SystemProperties.getBoolean(StorageManager.PROP_EMULATE_FBE, false);