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

  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 809 final StatFs sdStats = new StatFs(Environment.getExternalStorageDirectory().getPath());
810 final int blocksToMb = (1 << 20) / sdStats.getBlockSize();
811 availSdMb = sdStats.getAvailableBlocks() * blocksToMb;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 323 StatFs sdStats = new StatFs(Environment.getExternalStorageDirectory().getPath());
324 sdSize = (long) sdStats.getAvailableBlocks() * (long) sdStats.getBlockSize();
    [all...]

Completed in 109 milliseconds