Os.java revision c7fa20701d5e9398c38f4615ed293acfce1c0cf6
1ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes/*
2ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * Copyright (C) 2011 The Android Open Source Project
3ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *
4ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
5ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * you may not use this file except in compliance with the License.
6ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * You may obtain a copy of the License at
7ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *
8ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
9ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *
10ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * Unless required by applicable law or agreed to in writing, software
11ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
12ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * See the License for the specific language governing permissions and
14ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * limitations under the License.
15ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes */
16ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes
17ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughespackage libcore.io;
18ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes
1952724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughesimport java.io.FileDescriptor;
2052724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughes
21ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughespublic interface Os {
22ddfdbb9d172fe9b72e08e8d7deab0aa3b8acf044Elliott Hughes    public boolean access(String path, int mode) throws ErrnoException;
23b7190190e0ef8de883c952efb319ce7748831faaElliott Hughes    public void chmod(String path, int mode) throws ErrnoException;
24ddfdbb9d172fe9b72e08e8d7deab0aa3b8acf044Elliott Hughes    public String[] environ();
2552724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughes    public void fdatasync(FileDescriptor fd) throws ErrnoException;
2647cb338d43f75dd998b29caaaa9446c5705217d1Elliott Hughes    public StructStat fstat(FileDescriptor fd) throws ErrnoException;
2759fa7163774d6930a174bc038414a4b780581957Elliott Hughes    public StructStatFs fstatfs(FileDescriptor fd) throws ErrnoException;
2852724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughes    public void fsync(FileDescriptor fd) throws ErrnoException;
29f5333fd2094bdac4d6506177b1964b79afa64d77Elliott Hughes    public void ftruncate(FileDescriptor fd, long length) throws ErrnoException;
30ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes    public String getenv(String name);
319a3f363523000704205df288f8b6f2f48c0d8563Elliott Hughes    public boolean isatty(FileDescriptor fd);
32dedaccdfa07c370a58cba08b096133ad9eec0ec3Elliott Hughes    public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException;
330f746ff511162add42eeabaf14ba70ace874c6f4Elliott Hughes    public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException;
34c7fa20701d5e9398c38f4615ed293acfce1c0cf6Elliott Hughes    public void mkdir(String path, int mode) throws ErrnoException;
357e13c0f05ac9e7c55682d10e953dd4cbd5e6107cElliott Hughes    public void mlock(long address, long byteCount) throws ErrnoException;
367e25eff38a191d9c19e45093f4fde5102fb09d78Elliott Hughes    public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException;
377e25eff38a191d9c19e45093f4fde5102fb09d78Elliott Hughes    public void msync(long address, long byteCount, int flags) throws ErrnoException;
387e13c0f05ac9e7c55682d10e953dd4cbd5e6107cElliott Hughes    public void munlock(long address, long byteCount) throws ErrnoException;
397e25eff38a191d9c19e45093f4fde5102fb09d78Elliott Hughes    public void munmap(long address, long byteCount) throws ErrnoException;
400ac77ac8e915bff1a863e371f9b363033f9cf759Elliott Hughes    public FileDescriptor open(String path, int flags, int mode) throws ErrnoException;
4147cb338d43f75dd998b29caaaa9446c5705217d1Elliott Hughes    public StructStat lstat(String path) throws ErrnoException;
42c7fa20701d5e9398c38f4615ed293acfce1c0cf6Elliott Hughes    public void remove(String path) throws ErrnoException;
43a20cc6fca30d18e05db67ceeb0403b7b58ffd364Elliott Hughes    public void rename(String oldPath, String newPath) throws ErrnoException;
4447cb338d43f75dd998b29caaaa9446c5705217d1Elliott Hughes    public StructStat stat(String path) throws ErrnoException;
4559fa7163774d6930a174bc038414a4b780581957Elliott Hughes    public StructStatFs statfs(String path) throws ErrnoException;
46ddfdbb9d172fe9b72e08e8d7deab0aa3b8acf044Elliott Hughes    public String strerror(int errno);
47a20cc6fca30d18e05db67ceeb0403b7b58ffd364Elliott Hughes    public void symlink(String oldPath, String newPath) throws ErrnoException;
486fc1a0e1e68dc2e0d12341548e58fa7f1c5dafc4Elliott Hughes    public long sysconf(int name);
49ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes}
50