OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sdStats
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java
545
final StatFs
sdStats
= new StatFs(Environment.getExternalStorageDirectory().getPath());
546
final int blocksToMb = (1 << 20) /
sdStats
.getBlockSize();
547
availSdMb =
sdStats
.getAvailableBlocks() * blocksToMb;
/frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java
278
StatFs
sdStats
= new StatFs(
280
sdSize = (long)
sdStats
.getAvailableBlocks() *
281
(long)
sdStats
.getBlockSize();
[
all
...]
Completed in 292 milliseconds