summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2013-04-19 12:49:34 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-19 12:49:34 -0700
commit50474f91e3453e0e6448803c956d39e2e143e604 (patch)
treeff0163d05f114250329d5f209d2988d648c306d5 /api
parent8e251dc6da3fb93bc0cfff6dc004ccdad6f9901b (diff)
parentdde9559b78a93344ec0b568c2bac7329621de31f (diff)
downloadframeworks_base-50474f91e3453e0e6448803c956d39e2e143e604.zip
frameworks_base-50474f91e3453e0e6448803c956d39e2e143e604.tar.gz
frameworks_base-50474f91e3453e0e6448803c956d39e2e143e604.tar.bz2
am dde9559b: am 24b55f25: Merge "Deprecate StatFs methods returning small values." into jb-mr2-dev
* commit 'dde9559b78a93344ec0b568c2bac7329621de31f': Deprecate StatFs methods returning small values.
Diffstat (limited to 'api')
-rw-r--r--api/current.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/api/current.txt b/api/current.txt
index de7b87c..1a68ed6 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -17532,16 +17532,17 @@ package android.os {
public class StatFs {
ctor public StatFs(java.lang.String);
- method public int getAvailableBlocks();
+ method public deprecated int getAvailableBlocks();
method public long getAvailableBlocksLong();
method public long getAvailableBytes();
- method public int getBlockCount();
+ method public deprecated int getBlockCount();
method public long getBlockCountLong();
- method public int getBlockSize();
+ method public deprecated int getBlockSize();
method public long getBlockSizeLong();
- method public int getFreeBlocks();
+ method public deprecated int getFreeBlocks();
method public long getFreeBlocksLong();
method public long getFreeBytes();
+ method public long getTotalBytes();
method public void restat(java.lang.String);
}