diff options
| -rw-r--r-- | api/current.txt | 4 | ||||
| -rw-r--r-- | api/system-current.txt | 4 | ||||
| -rw-r--r-- | api/test-current.txt | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 7c352aaf77dc..023d073e5ecb 100644 --- a/api/current.txt +++ b/api/current.txt @@ -35425,6 +35425,7 @@ package android.system { method public static java.net.SocketAddress getsockname(java.io.FileDescriptor) throws android.system.ErrnoException; method public static int gettid(); method public static int getuid(); + method public static byte[] getxattr(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static java.lang.String if_indextoname(int); method public static int if_nametoindex(java.lang.String); method public static java.net.InetAddress inet_pton(int, java.lang.String); @@ -35433,6 +35434,7 @@ package android.system { method public static void lchown(java.lang.String, int, int) throws android.system.ErrnoException; method public static void link(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static void listen(java.io.FileDescriptor, int) throws android.system.ErrnoException; + method public static java.lang.String[] listxattr(java.lang.String) throws android.system.ErrnoException; method public static long lseek(java.io.FileDescriptor, long, int) throws android.system.ErrnoException; method public static android.system.StructStat lstat(java.lang.String) throws android.system.ErrnoException; method public static void mincore(long, long, byte[]) throws android.system.ErrnoException; @@ -35459,6 +35461,7 @@ package android.system { method public static int recvfrom(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static int recvfrom(java.io.FileDescriptor, byte[], int, int, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static void remove(java.lang.String) throws android.system.ErrnoException; + method public static void removexattr(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static void rename(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static long sendfile(java.io.FileDescriptor, java.io.FileDescriptor, android.util.MutableLong, long) throws android.system.ErrnoException; method public static int sendto(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; @@ -35470,6 +35473,7 @@ package android.system { method public static int setsid() throws android.system.ErrnoException; method public static void setsockoptInt(java.io.FileDescriptor, int, int, int) throws android.system.ErrnoException; method public static void setuid(int) throws android.system.ErrnoException; + method public static void setxattr(java.lang.String, java.lang.String, byte[], int) throws android.system.ErrnoException; method public static void shutdown(java.io.FileDescriptor, int) throws android.system.ErrnoException; method public static java.io.FileDescriptor socket(int, int, int) throws android.system.ErrnoException; method public static void socketpair(int, int, int, java.io.FileDescriptor, java.io.FileDescriptor) throws android.system.ErrnoException; diff --git a/api/system-current.txt b/api/system-current.txt index 277e9caf3d33..dca29f6400bb 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -38292,6 +38292,7 @@ package android.system { method public static java.net.SocketAddress getsockname(java.io.FileDescriptor) throws android.system.ErrnoException; method public static int gettid(); method public static int getuid(); + method public static byte[] getxattr(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static java.lang.String if_indextoname(int); method public static int if_nametoindex(java.lang.String); method public static java.net.InetAddress inet_pton(int, java.lang.String); @@ -38300,6 +38301,7 @@ package android.system { method public static void lchown(java.lang.String, int, int) throws android.system.ErrnoException; method public static void link(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static void listen(java.io.FileDescriptor, int) throws android.system.ErrnoException; + method public static java.lang.String[] listxattr(java.lang.String) throws android.system.ErrnoException; method public static long lseek(java.io.FileDescriptor, long, int) throws android.system.ErrnoException; method public static android.system.StructStat lstat(java.lang.String) throws android.system.ErrnoException; method public static void mincore(long, long, byte[]) throws android.system.ErrnoException; @@ -38326,6 +38328,7 @@ package android.system { method public static int recvfrom(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static int recvfrom(java.io.FileDescriptor, byte[], int, int, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static void remove(java.lang.String) throws android.system.ErrnoException; + method public static void removexattr(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static void rename(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static long sendfile(java.io.FileDescriptor, java.io.FileDescriptor, android.util.MutableLong, long) throws android.system.ErrnoException; method public static int sendto(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; @@ -38337,6 +38340,7 @@ package android.system { method public static int setsid() throws android.system.ErrnoException; method public static void setsockoptInt(java.io.FileDescriptor, int, int, int) throws android.system.ErrnoException; method public static void setuid(int) throws android.system.ErrnoException; + method public static void setxattr(java.lang.String, java.lang.String, byte[], int) throws android.system.ErrnoException; method public static void shutdown(java.io.FileDescriptor, int) throws android.system.ErrnoException; method public static java.io.FileDescriptor socket(int, int, int) throws android.system.ErrnoException; method public static void socketpair(int, int, int, java.io.FileDescriptor, java.io.FileDescriptor) throws android.system.ErrnoException; diff --git a/api/test-current.txt b/api/test-current.txt index 568ffd97e3e4..4aa6b303314a 100644 --- a/api/test-current.txt +++ b/api/test-current.txt @@ -35506,6 +35506,7 @@ package android.system { method public static java.net.SocketAddress getsockname(java.io.FileDescriptor) throws android.system.ErrnoException; method public static int gettid(); method public static int getuid(); + method public static byte[] getxattr(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static java.lang.String if_indextoname(int); method public static int if_nametoindex(java.lang.String); method public static java.net.InetAddress inet_pton(int, java.lang.String); @@ -35514,6 +35515,7 @@ package android.system { method public static void lchown(java.lang.String, int, int) throws android.system.ErrnoException; method public static void link(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static void listen(java.io.FileDescriptor, int) throws android.system.ErrnoException; + method public static java.lang.String[] listxattr(java.lang.String) throws android.system.ErrnoException; method public static long lseek(java.io.FileDescriptor, long, int) throws android.system.ErrnoException; method public static android.system.StructStat lstat(java.lang.String) throws android.system.ErrnoException; method public static void mincore(long, long, byte[]) throws android.system.ErrnoException; @@ -35540,6 +35542,7 @@ package android.system { method public static int recvfrom(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static int recvfrom(java.io.FileDescriptor, byte[], int, int, int, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static void remove(java.lang.String) throws android.system.ErrnoException; + method public static void removexattr(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static void rename(java.lang.String, java.lang.String) throws android.system.ErrnoException; method public static long sendfile(java.io.FileDescriptor, java.io.FileDescriptor, android.util.MutableLong, long) throws android.system.ErrnoException; method public static int sendto(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; @@ -35551,6 +35554,7 @@ package android.system { method public static int setsid() throws android.system.ErrnoException; method public static void setsockoptInt(java.io.FileDescriptor, int, int, int) throws android.system.ErrnoException; method public static void setuid(int) throws android.system.ErrnoException; + method public static void setxattr(java.lang.String, java.lang.String, byte[], int) throws android.system.ErrnoException; method public static void shutdown(java.io.FileDescriptor, int) throws android.system.ErrnoException; method public static java.io.FileDescriptor socket(int, int, int) throws android.system.ErrnoException; method public static void socketpair(int, int, int, java.io.FileDescriptor, java.io.FileDescriptor) throws android.system.ErrnoException; |