From e8e6d40438db879083562d7b75e554295f8e7378 Mon Sep 17 00:00:00 2001 From: Remi NGUYEN VAN Date: Thu, 24 Jan 2019 20:39:57 +0900 Subject: [PATCH] Add Os.bind, Os.sendTo to public API Test: m Bug: 123062477 Change-Id: Ic496c1212dc2d97cf34db2a7c7d024b02790e8ed --- api/current.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/current.txt b/api/current.txt index 37dffa80e2356..bb7ce7b5454e6 100755 --- a/api/current.txt +++ b/api/current.txt @@ -40403,6 +40403,7 @@ package android.system { method public static java.io.FileDescriptor accept(java.io.FileDescriptor, java.net.InetSocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static boolean access(String, int) throws android.system.ErrnoException; method public static void bind(java.io.FileDescriptor, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; + method public static void bind(java.io.FileDescriptor, java.net.SocketAddress) throws android.system.ErrnoException, java.net.SocketException; method public static void chmod(String, int) throws android.system.ErrnoException; method public static void chown(String, int, int) throws android.system.ErrnoException; method public static void close(java.io.FileDescriptor) throws android.system.ErrnoException; @@ -40471,6 +40472,7 @@ package android.system { method public static long sendfile(java.io.FileDescriptor, java.io.FileDescriptor, android.system.Int64Ref, 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; method public static int sendto(java.io.FileDescriptor, byte[], int, int, int, java.net.InetAddress, int) throws android.system.ErrnoException, java.net.SocketException; + method public static int sendto(java.io.FileDescriptor, byte[], int, int, int, java.net.SocketAddress) throws android.system.ErrnoException, java.net.SocketException; method @Deprecated public static void setegid(int) throws android.system.ErrnoException; method public static void setenv(String, String, boolean) throws android.system.ErrnoException; method @Deprecated public static void seteuid(int) throws android.system.ErrnoException;