15d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes/*
25d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * Copyright (C) 2011 The Android Open Source Project
35d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes *
45d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
55d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * you may not use this file except in compliance with the License.
65d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * You may obtain a copy of the License at
75d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes *
85d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
95d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes *
105d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * Unless required by applicable law or agreed to in writing, software
115d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
125d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
135d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * See the License for the specific language governing permissions and
145d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes * limitations under the License.
155d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes */
165d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes
175d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughespackage android.system;
185d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes
195d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport android.util.MutableInt;
205d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport android.util.MutableLong;
215d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.io.FileDescriptor;
225d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.io.InterruptedIOException;
235d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.net.InetAddress;
245d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.net.InetSocketAddress;
255d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.net.SocketAddress;
265d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.net.SocketException;
275d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport java.nio.ByteBuffer;
285d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughesimport libcore.io.Libcore;
295d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes
305d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes/**
3134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes * Access to low-level system functionality. Most of these are system calls. Most users will want
3234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes * to use higher-level APIs where available, but this class provides access to the underlying
3334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes * primitives used to implement the higher-level APIs.
3434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes *
3534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes * <p>The corresponding constants can be found in {@link OsConstants}.
365d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes */
375d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughespublic final class Os {
385d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  private Os() {}
395d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes
4034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
4134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/accept.2.html">accept(2)</a>.
4234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
435d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static FileDescriptor accept(FileDescriptor fd, InetSocketAddress peerAddress) throws ErrnoException, SocketException { return Libcore.os.accept(fd, peerAddress); }
4434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
4534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
4634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/access.2.html">access(2)</a>.
4734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
485d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static boolean access(String path, int mode) throws ErrnoException { return Libcore.os.access(path, mode); }
4934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
503e58734d651080009c9190c7062837fca5c7cf4ePaul Jensen  /** @hide */ public static InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException { return Libcore.os.android_getaddrinfo(node, hints, netId); }
513e58734d651080009c9190c7062837fca5c7cf4ePaul Jensen
5234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
5334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/bind.2.html">bind(2)</a>.
5434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
555d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { Libcore.os.bind(fd, address, port); }
5634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
578f5b46d72e5c1b1b1dd4357580c4fb5a60e3f4deErik Kline  /** @hide */ public static void bind(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException { Libcore.os.bind(fd, address); }
588f5b46d72e5c1b1b1dd4357580c4fb5a60e3f4deErik Kline
5934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
6034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/chmod.2.html">chmod(2)</a>.
6134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
625d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void chmod(String path, int mode) throws ErrnoException { Libcore.os.chmod(path, mode); }
6334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
6434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
6534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/chown.2.html">chown(2)</a>.
6634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
675d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(path, uid, gid); }
6834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
6934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
7034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/close.2.html">close(2)</a>.
7134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
725d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void close(FileDescriptor fd) throws ErrnoException { Libcore.os.close(fd); }
7334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
7434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
7534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/connect.2.html">connect(2)</a>.
7634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
775d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException { Libcore.os.connect(fd, address, port); }
7834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
798f5b46d72e5c1b1b1dd4357580c4fb5a60e3f4deErik Kline  /** @hide */ public static void connect(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException { Libcore.os.connect(fd, address); }
808f5b46d72e5c1b1b1dd4357580c4fb5a60e3f4deErik Kline
8134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
8234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/dup.2.html">dup(2)</a>.
8334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
845d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static FileDescriptor dup(FileDescriptor oldFd) throws ErrnoException { return Libcore.os.dup(oldFd); }
8534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
8634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
8734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/dup2.2.html">dup2(2)</a>.
8834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
895d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static FileDescriptor dup2(FileDescriptor oldFd, int newFd) throws ErrnoException { return Libcore.os.dup2(oldFd, newFd); }
9034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
9134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
9234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/environ.3.html">environ(3)</a>.
9334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
945d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String[] environ() { return Libcore.os.environ(); }
9534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
9634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
9734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/execv.2.html">execv(2)</a>.
9834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
995d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void execv(String filename, String[] argv) throws ErrnoException { Libcore.os.execv(filename, argv); }
10034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
10134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
10234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/execve.2.html">execve(2)</a>.
10334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1045d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void execve(String filename, String[] argv, String[] envp) throws ErrnoException { Libcore.os.execve(filename, argv, envp); }
10534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
10634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
10734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/fchmod.2.html">fchmod(2)</a>.
10834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1095d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void fchmod(FileDescriptor fd, int mode) throws ErrnoException { Libcore.os.fchmod(fd, mode); }
11034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
11134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
11234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/fchown.2.html">fchown(2)</a>.
11334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1145d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.fchown(fd, uid, gid); }
11534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
11699a0c82619a88c6aea038757cf14090f5d33afebNeil Fuller  /** @hide */ public static int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return Libcore.os.fcntlFlock(fd, cmd, arg); }
117c8d9ea662de6f4856b28907b4119087cfc5a44d2Narayan Kamath  /** @hide */ public static int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return Libcore.os.fcntlInt(fd, cmd, arg); }
118c8d9ea662de6f4856b28907b4119087cfc5a44d2Narayan Kamath  /** @hide */ public static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return Libcore.os.fcntlVoid(fd, cmd); }
11934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
12034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
12134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/fdatasync.2.html">fdatasync(2)</a>.
12234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1235d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void fdatasync(FileDescriptor fd) throws ErrnoException { Libcore.os.fdatasync(fd); }
12434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
12534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
12634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/fstat.2.html">fstat(2)</a>.
12734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1285d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static StructStat fstat(FileDescriptor fd) throws ErrnoException { return Libcore.os.fstat(fd); }
12934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
13034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
13134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/fstatvfs.2.html">fstatvfs(2)</a>.
13234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1335d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { return Libcore.os.fstatvfs(fd); }
13434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
13534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
13634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/fsync.2.html">fsync(2)</a>.
13734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1385d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void fsync(FileDescriptor fd) throws ErrnoException { Libcore.os.fsync(fd); }
13934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
14034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
14134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/ftruncate.2.html">ftruncate(2)</a>.
14234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1435d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void ftruncate(FileDescriptor fd, long length) throws ErrnoException { Libcore.os.ftruncate(fd, length); }
14434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
14534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
14634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/gai_strerror.3.html">gai_strerror(3)</a>.
14734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1485d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String gai_strerror(int error) { return Libcore.os.gai_strerror(error); }
14934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
15034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
15134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getegid.2.html">getegid(2)</a>.
15234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1535d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int getegid() { return Libcore.os.getegid(); }
15434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
15534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
15634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/geteuid.2.html">geteuid(2)</a>.
15734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1585d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int geteuid() { return Libcore.os.geteuid(); }
15934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
16034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
16134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getgid.2.html">getgid(2)</a>.
16234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1635d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int getgid() { return Libcore.os.getgid(); }
16434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
16534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
16634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/getenv.3.html">getenv(3)</a>.
16734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1685d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String getenv(String name) { return Libcore.os.getenv(name); }
16934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
17034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static String getnameinfo(InetAddress address, int flags) throws GaiException { return Libcore.os.getnameinfo(address, flags); }
17134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
17234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
17334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getpeername.2.html">getpeername(2)</a>.
17434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1755d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static SocketAddress getpeername(FileDescriptor fd) throws ErrnoException { return Libcore.os.getpeername(fd); }
17634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
17734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
1788f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getpgid.2.html">getpgid(2)</a>.
1798f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   */
1808f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /** @hide */ public static int getpgid(int pid) throws ErrnoException { return Libcore.os.getpgid(pid); }
1818f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes
1828f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /**
18334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getpid.2.html">getpid(2)</a>.
18434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1855d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int getpid() { return Libcore.os.getpid(); }
18634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
18734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
18834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getppid.2.html">getppid(2)</a>.
18934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1905d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int getppid() { return Libcore.os.getppid(); }
19134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
19234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static StructPasswd getpwnam(String name) throws ErrnoException { return Libcore.os.getpwnam(name); }
19334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
19434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static StructPasswd getpwuid(int uid) throws ErrnoException { return Libcore.os.getpwuid(uid); }
19534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
19634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
19734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getsockname.2.html">getsockname(2)</a>.
19834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
1995d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static SocketAddress getsockname(FileDescriptor fd) throws ErrnoException { return Libcore.os.getsockname(fd); }
20034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
20134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptByte(fd, level, option); }
20234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptInAddr(fd, level, option); }
20334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptInt(fd, level, option); }
20434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptLinger(fd, level, option); }
20534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptTimeval(fd, level, option); }
20634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static StructUcred getsockoptUcred(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptUcred(fd, level, option); }
20734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
20834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
20934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/gettid.2.html">gettid(2)</a>.
21034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2115d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int gettid() { return Libcore.os.gettid(); }
21234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
21334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
21434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/getuid.2.html">getuid(2)</a>.
21534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2165d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int getuid() { return Libcore.os.getuid(); }
21734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
21882d076b51f6fe7c1cbd1f37414be36eaaa9b0e56Jeff Sharkey  /** @hide */ public static int getxattr(String path, String name, byte[] outValue) throws ErrnoException { return Libcore.os.getxattr(path, name, outValue); }
21982d076b51f6fe7c1cbd1f37414be36eaaa9b0e56Jeff Sharkey
22034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
22134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/if_indextoname.3.html">if_indextoname(3)</a>.
22234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2235d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String if_indextoname(int index) { return Libcore.os.if_indextoname(index); }
22434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
22534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
22634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/inet_pton.3.html">inet_pton(3)</a>.
22734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2285d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static InetAddress inet_pton(int family, String address) { return Libcore.os.inet_pton(family, address); }
22934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
23034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return Libcore.os.ioctlInetAddress(fd, cmd, interfaceName); }
23134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return Libcore.os.ioctlInt(fd, cmd, arg); }
23234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
23334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
23434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/isatty.3.html">isatty(3)</a>.
23534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2365d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static boolean isatty(FileDescriptor fd) { return Libcore.os.isatty(fd); }
23734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
23834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
23934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/kill.2.html">kill(2)</a>.
24034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2415d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void kill(int pid, int signal) throws ErrnoException { Libcore.os.kill(pid, signal); }
24234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
24334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
24434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/lchown.2.html">lchown(2)</a>.
24534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2465d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown(path, uid, gid); }
24734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
24834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
24904428d61d7000e17ab21d08a1d672c34eb68f6e2Elliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/link.2.html">link(2)</a>.
25004428d61d7000e17ab21d08a1d672c34eb68f6e2Elliott Hughes   */
25104428d61d7000e17ab21d08a1d672c34eb68f6e2Elliott Hughes  public static void link(String oldPath, String newPath) throws ErrnoException { Libcore.os.link(oldPath, newPath); }
25204428d61d7000e17ab21d08a1d672c34eb68f6e2Elliott Hughes
25304428d61d7000e17ab21d08a1d672c34eb68f6e2Elliott Hughes  /**
25434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/listen.2.html">listen(2)</a>.
25534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2565d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void listen(FileDescriptor fd, int backlog) throws ErrnoException { Libcore.os.listen(fd, backlog); }
25734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
25834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
25934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/lseek.2.html">lseek(2)</a>.
26034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2615d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return Libcore.os.lseek(fd, offset, whence); }
26234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
26334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
26434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/lstat.2.html">lstat(2)</a>.
26534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2665d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static StructStat lstat(String path) throws ErrnoException { return Libcore.os.lstat(path); }
26734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
26834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
26934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/mincore.2.html">mincore(2)</a>.
27034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2715d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void mincore(long address, long byteCount, byte[] vector) throws ErrnoException { Libcore.os.mincore(address, byteCount, vector); }
27234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
27334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
27434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/mkdir.2.html">mkdir(2)</a>.
27534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2765d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void mkdir(String path, int mode) throws ErrnoException { Libcore.os.mkdir(path, mode); }
27734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
27834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
27934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/mkfifo.3.html">mkfifo(3)</a>.
28034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2815d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void mkfifo(String path, int mode) throws ErrnoException { Libcore.os.mkfifo(path, mode); }
28234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
28334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
28434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/mlock.2.html">mlock(2)</a>.
28534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2865d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void mlock(long address, long byteCount) throws ErrnoException { Libcore.os.mlock(address, byteCount); }
28734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
28834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
28934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/mmap.2.html">mmap(2)</a>.
29034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2915d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException { return Libcore.os.mmap(address, byteCount, prot, flags, fd, offset); }
29234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
29334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
29434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/msync.2.html">msync(2)</a>.
29534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
2965d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void msync(long address, long byteCount, int flags) throws ErrnoException { Libcore.os.msync(address, byteCount, flags); }
29734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
29834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
29934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/munlock.2.html">munlock(2)</a>.
30034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3015d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void munlock(long address, long byteCount) throws ErrnoException { Libcore.os.munlock(address, byteCount); }
30234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
30334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
30434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/munmap.2.html">munmap(2)</a>.
30534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3065d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void munmap(long address, long byteCount) throws ErrnoException { Libcore.os.munmap(address, byteCount); }
30734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
30834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
30934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/open.2.html">open(2)</a>.
31034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3115d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static FileDescriptor open(String path, int flags, int mode) throws ErrnoException { return Libcore.os.open(path, flags, mode); }
31234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
31334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
31434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/pipe.2.html">pipe(2)</a>.
31534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3160d8b5c3692c36837d22c4e7d9c4d7d95f6a10235Elliott Hughes  public static FileDescriptor[] pipe() throws ErrnoException { return Libcore.os.pipe2(0); }
3170d8b5c3692c36837d22c4e7d9c4d7d95f6a10235Elliott Hughes
3180d8b5c3692c36837d22c4e7d9c4d7d95f6a10235Elliott Hughes  /** @hide */ public static FileDescriptor[] pipe2(int flags) throws ErrnoException { return Libcore.os.pipe2(flags); }
31934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
32034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
32134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/poll.2.html">poll(2)</a>.
322fa542091e45db699a937c5ac0191194405107827Elliott Hughes   *
323fa542091e45db699a937c5ac0191194405107827Elliott Hughes   * <p>Note that in Lollipop this could throw an {@code ErrnoException} with {@code EINTR}.
324fa542091e45db699a937c5ac0191194405107827Elliott Hughes   * In later releases, the implementation will automatically just restart the system call with
325fa542091e45db699a937c5ac0191194405107827Elliott Hughes   * an appropriately reduced timeout.
32634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3275d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { return Libcore.os.poll(fds, timeoutMs); }
32834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
32934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
33034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/posix_fallocate.2.html">posix_fallocate(2)</a>.
33134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3325d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { Libcore.os.posix_fallocate(fd, offset, length); }
33334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
33434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
33534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/prctl.2.html">prctl(2)</a>.
33634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3375215e4c0db7530519981f1e505e6db82401802f2Nick Kralevich  public static int prctl(int option, long arg2, long arg3, long arg4, long arg5) throws ErrnoException { return Libcore.os.prctl(option, arg2, arg3, arg4, arg5); };
33834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
33934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
34034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
34134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3425d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, buffer, offset); }
34334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
34434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
34534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
34634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3475d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, bytes, byteOffset, byteCount, offset); }
34834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
34934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
35034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/pwrite.2.html">pwrite(2)</a>.
35134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3525d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pwrite(fd, buffer, offset); }
35334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
35434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
35534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/pwrite.2.html">pwrite(2)</a>.
35634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3575d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pwrite(fd, bytes, byteOffset, byteCount, offset); }
35834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
35934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
36034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/read.2.html">read(2)</a>.
36134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3625d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { return Libcore.os.read(fd, buffer); }
36334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
36434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
36534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/read.2.html">read(2)</a>.
36634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3675d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { return Libcore.os.read(fd, bytes, byteOffset, byteCount); }
36834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
36934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
37034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/readlink.2.html">readlink(2)</a>.
37134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3725d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String readlink(String path) throws ErrnoException { return Libcore.os.readlink(path); }
37334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
37434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
37534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/readv.2.html">readv(2)</a>.
37634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3775d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); }
37834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
37934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
38034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/recvfrom.2.html">recvfrom(2)</a>.
38134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3825d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return Libcore.os.recvfrom(fd, buffer, flags, srcAddress); }
38334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
38434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
38534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/recvfrom.2.html">recvfrom(2)</a>.
38634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3875d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return Libcore.os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress); }
38834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
38934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
39034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/remove.3.html">remove(3)</a>.
39134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3925d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void remove(String path) throws ErrnoException { Libcore.os.remove(path); }
39334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
39482d076b51f6fe7c1cbd1f37414be36eaaa9b0e56Jeff Sharkey  /** @hide */ public static void removexattr(String path, String name) throws ErrnoException { Libcore.os.removexattr(path, name); }
39582d076b51f6fe7c1cbd1f37414be36eaaa9b0e56Jeff Sharkey
39634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
39734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/rename.2.html">rename(2)</a>.
39834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
3995d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void rename(String oldPath, String newPath) throws ErrnoException { Libcore.os.rename(oldPath, newPath); }
40034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
40134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
40234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/sendfile.2.html">sendfile(2)</a>.
40334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4045d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return Libcore.os.sendfile(outFd, inFd, inOffset, byteCount); }
40534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
40634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
40734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>.
40834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4095d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, buffer, flags, inetAddress, port); }
41034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
41134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
41234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>.
41334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4145d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); }
41534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
41634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
41736f73b3bd9014eaf47663b85fb185b95fbf7a3a6Lorenzo Colitti   * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>.
41836f73b3bd9014eaf47663b85fb185b95fbf7a3a6Lorenzo Colitti   */
41936f73b3bd9014eaf47663b85fb185b95fbf7a3a6Lorenzo Colitti  /** @hide */ public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress address) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, address); }
42036f73b3bd9014eaf47663b85fb185b95fbf7a3a6Lorenzo Colitti
42136f73b3bd9014eaf47663b85fb185b95fbf7a3a6Lorenzo Colitti  /**
42234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setegid.2.html">setegid(2)</a>.
42334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4245d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void setegid(int egid) throws ErrnoException { Libcore.os.setegid(egid); }
42534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
42634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
42734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/setenv.3.html">setenv(3)</a>.
42834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4295d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void setenv(String name, String value, boolean overwrite) throws ErrnoException { Libcore.os.setenv(name, value, overwrite); }
43034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
43134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
43234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/seteuid.2.html">seteuid(2)</a>.
43334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4345d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void seteuid(int euid) throws ErrnoException { Libcore.os.seteuid(euid); }
43534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
43634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
43734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setgid.2.html">setgid(2)</a>.
43834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4395d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void setgid(int gid) throws ErrnoException { Libcore.os.setgid(gid); }
44034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
44134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
4428f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setpgid.2.html">setpgid(2)</a>.
4438f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   */
4448f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /** @hide */ public static void setpgid(int pid, int pgid) throws ErrnoException { Libcore.os.setpgid(pid, pgid); }
4458f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes
4468f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /**
4478f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setregid.2.html">setregid(2)</a>.
4488f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   */
4498f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /** @hide */ public static void setregid(int rgid, int egid) throws ErrnoException { Libcore.os.setregid(rgid, egid); }
4508f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes
4518f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /**
4528f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setreuid.2.html">setreuid(2)</a>.
4538f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes   */
4548f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /** @hide */ public static void setreuid(int ruid, int euid) throws ErrnoException { Libcore.os.setreuid(ruid, euid); }
4558f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes
4568f0f2ac7fcd8f366a78cc51181d065ab93385e46Elliott Hughes  /**
45734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setsid.2.html">setsid(2)</a>.
45834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4595d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int setsid() throws ErrnoException { return Libcore.os.setsid(); }
46034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
46134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException { Libcore.os.setsockoptByte(fd, level, option, value); }
46234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException { Libcore.os.setsockoptIfreq(fd, level, option, value); }
46334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException { Libcore.os.setsockoptInt(fd, level, option, value); }
46434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException { Libcore.os.setsockoptIpMreqn(fd, level, option, value); }
46534721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) throws ErrnoException { Libcore.os.setsockoptGroupReq(fd, level, option, value); }
46634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptGroupSourceReq(FileDescriptor fd, int level, int option, StructGroupSourceReq value) throws ErrnoException { Libcore.os.setsockoptGroupSourceReq(fd, level, option, value); }
46734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) throws ErrnoException { Libcore.os.setsockoptLinger(fd, level, option, value); }
46834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /** @hide */ public static void setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) throws ErrnoException { Libcore.os.setsockoptTimeval(fd, level, option, value); }
46934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
47034721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
47134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/setuid.2.html">setuid(2)</a>.
47234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4735d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void setuid(int uid) throws ErrnoException { Libcore.os.setuid(uid); }
47434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
47582d076b51f6fe7c1cbd1f37414be36eaaa9b0e56Jeff Sharkey  /** @hide */ public static void setxattr(String path, String name, byte[] value, int flags) throws ErrnoException { Libcore.os.setxattr(path, name, value, flags); };
47682d076b51f6fe7c1cbd1f37414be36eaaa9b0e56Jeff Sharkey
47734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
47834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/shutdown.2.html">shutdown(2)</a>.
47934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4805d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void shutdown(FileDescriptor fd, int how) throws ErrnoException { Libcore.os.shutdown(fd, how); }
48134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
48234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
48334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/socket.2.html">socket(2)</a>.
48434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4855d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException { return Libcore.os.socket(domain, type, protocol); }
48634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
48734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
48834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/socketpair.2.html">socketpair(2)</a>.
48934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4905d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { Libcore.os.socketpair(domain, type, protocol, fd1, fd2); }
49134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
49234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
49334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/stat.2.html">stat(2)</a>.
49434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
4955d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static StructStat stat(String path) throws ErrnoException { return Libcore.os.stat(path); }
49634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
49734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
49834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/statvfs.2.html">statvfs(2)</a>.
49934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5005d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static StructStatVfs statvfs(String path) throws ErrnoException { return Libcore.os.statvfs(path); }
50134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
50234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
50334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/strerror.3.html">strerror(2)</a>.
50434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5055d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String strerror(int errno) { return Libcore.os.strerror(errno); }
50634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
50734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
50834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/strsignal.3.html">strsignal(3)</a>.
50934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5105d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static String strsignal(int signal) { return Libcore.os.strsignal(signal); }
51134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
51234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
51334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/symlink.2.html">symlink(2)</a>.
51434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5155d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void symlink(String oldPath, String newPath) throws ErrnoException { Libcore.os.symlink(oldPath, newPath); }
51634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
51734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
51834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/sysconf.3.html">sysconf(3)</a>.
51934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5205d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static long sysconf(int name) { return Libcore.os.sysconf(name); }
52134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
52234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
52334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/tcdrain.3.html">tcdrain(3)</a>.
52434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5255d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void tcdrain(FileDescriptor fd) throws ErrnoException { Libcore.os.tcdrain(fd); }
52634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
52734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
52834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/tcsendbreak.3.html">tcsendbreak(3)</a>.
52934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5305d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void tcsendbreak(FileDescriptor fd, int duration) throws ErrnoException { Libcore.os.tcsendbreak(fd, duration); }
53134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
53234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
53334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/umask.2.html">umask(2)</a>.
53434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5355d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int umask(int mask) { return Libcore.os.umask(mask); }
53634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
53734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
53834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/uname.2.html">uname(2)</a>.
53934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5405d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static StructUtsname uname() { return Libcore.os.uname(); }
54134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
54234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
54334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man3/unsetenv.3.html">unsetenv(3)</a>.
54434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5455d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static void unsetenv(String name) throws ErrnoException { Libcore.os.unsetenv(name); }
54634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
54734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
54834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/waitpid.2.html">waitpid(2)</a>.
54934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5505d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int waitpid(int pid, MutableInt status, int options) throws ErrnoException { return Libcore.os.waitpid(pid, status, options); }
55134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
55234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
55334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/write.2.html">write(2)</a>.
55434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5555d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { return Libcore.os.write(fd, buffer); }
55634721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
55734721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
55834721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/write.2.html">write(2)</a>.
55934721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5605d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { return Libcore.os.write(fd, bytes, byteOffset, byteCount); }
56134721e8e0051258e87848bae25baf50722b4c76aElliott Hughes
56234721e8e0051258e87848bae25baf50722b4c76aElliott Hughes  /**
56334721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   * See <a href="http://man7.org/linux/man-pages/man2/writev.2.html">writev(2)</a>.
56434721e8e0051258e87848bae25baf50722b4c76aElliott Hughes   */
5655d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes  public static int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.writev(fd, buffers, offsets, byteCounts); }
5665d930cadc8f62aee5f18e7921296fe66a54f18abElliott Hughes}
567