Loading services/core/java/com/android/server/DynamicSystemService.java +4 −0 Original line number Diff line number Diff line Loading @@ -91,6 +91,10 @@ public class DynamicSystemService extends IDynamicSystemService.Stub { if (!volume.isMountedWritable()) { continue; } // gsid only supports vfat external storage. if (!"vfat".equalsIgnoreCase(volume.fsType)) { continue; } DiskInfo disk = volume.getDisk(); long mega = disk.size >> 20; Slog.i(TAG, volume.getPath() + ": " + mega + " MB"); Loading Loading
services/core/java/com/android/server/DynamicSystemService.java +4 −0 Original line number Diff line number Diff line Loading @@ -91,6 +91,10 @@ public class DynamicSystemService extends IDynamicSystemService.Stub { if (!volume.isMountedWritable()) { continue; } // gsid only supports vfat external storage. if (!"vfat".equalsIgnoreCase(volume.fsType)) { continue; } DiskInfo disk = volume.getDisk(); long mega = disk.size >> 20; Slog.i(TAG, volume.getPath() + ": " + mega + " MB"); Loading