public interface LibC
Modifier and Type | Interface and Description |
---|---|
static interface |
LibC.LibCSignalHandler |
Modifier and Type | Method and Description |
---|---|
int |
chdir(CharSequence path) |
int |
chmod(CharSequence filename,
int mode) |
int |
chown(CharSequence filename,
int user,
int group) |
int |
close(int fd) |
CharSequence |
crypt(CharSequence key,
CharSequence salt) |
int |
dup(int fd) |
int |
dup2(int oldFd,
int newFd) |
int |
endgrent() |
int |
endpwent() |
int |
execv(CharSequence path,
CharSequence... argv) |
int |
execve(CharSequence path,
CharSequence[] argv,
CharSequence[] envp) |
int |
fchmod(int fd,
int mode) |
int |
fchown(int fd,
int user,
int group) |
int |
fcntl(int fd,
int fnctl) |
int |
fcntl(int fd,
int fnctl,
int... arg)
Deprecated.
|
int |
fcntl(int fd,
int fnctl,
int arg) |
int |
fdatasync(int fd) |
int |
flock(int fd,
int mode) |
int |
fork() |
int |
fstat(int fd,
FileStat stat) |
int |
fstat64(int fd,
FileStat stat) |
int |
fsync(int fd) |
int |
ftruncate(int fd,
long offset) |
int |
futimes(int fd,
Timeval[] times) |
long |
getcwd(byte[] cwd,
int len) |
int |
getdtablesize() |
int |
getegid() |
String |
getenv(CharSequence envName) |
int |
geteuid() |
int |
getgid() |
NativeGroup |
getgrent() |
NativeGroup |
getgrgid(int which) |
NativeGroup |
getgrnam(CharSequence which) |
String |
getlogin() |
int |
getpgid() |
int |
getpgid(int pid) |
int |
getpgrp() |
int |
getpid() |
int |
getppid() |
int |
getpriority(int which,
int who) |
NativePasswd |
getpwent() |
NativePasswd |
getpwnam(CharSequence which) |
NativePasswd |
getpwuid(int which) |
int |
getuid() |
int |
isatty(int fd) |
int |
kill(int pid,
int signal) |
int |
lchmod(CharSequence filename,
int mode) |
int |
lchown(CharSequence filename,
int user,
int group) |
int |
link(CharSequence oldpath,
CharSequence newpath) |
int |
lseek(int fd,
long offset,
int whence) |
int |
lstat(CharSequence path,
FileStat stat) |
int |
lstat64(CharSequence path,
FileStat stat) |
int |
mkdir(CharSequence path,
int mode) |
int |
open(CharSequence path,
int flags,
int perm) |
int |
pipe(int[] fds) |
int |
pread(int fd,
byte[] src,
int len,
int offset) |
int |
pread(int fd,
ByteBuffer src,
int len,
int offset) |
int |
pwrite(int fd,
byte[] src,
int len,
int offset) |
int |
pwrite(int fd,
ByteBuffer src,
int len,
int offset) |
int |
read(int fd,
byte[] dst,
int len) |
int |
read(int fd,
ByteBuffer dst,
int len) |
int |
readlink(CharSequence oldpath,
ByteBuffer buffer,
int len) |
int |
recvmsg(int socket,
MsgHdr message,
int flags) |
int |
rmdir(CharSequence path) |
int |
sendmsg(int socket,
MsgHdr message,
int flags) |
int |
setegid(int egid) |
int |
setenv(CharSequence envName,
CharSequence envValue,
int overwrite) |
int |
seteuid(int euid) |
int |
setgid(int gid) |
int |
setgrent() |
int |
setpgid(int pid,
int pgid) |
int |
setpgrp(int pid,
int pgrp) |
int |
setpriority(int which,
int who,
int prio) |
int |
setpwent() |
int |
setsid() |
int |
setuid(int uid) |
long |
signal(int sig,
LibC.LibCSignalHandler handler) |
int |
socketpair(int domain,
int type,
int protocol,
int[] fds) |
int |
stat(CharSequence path,
FileStat stat) |
int |
stat64(CharSequence path,
FileStat stat) |
int |
symlink(CharSequence oldpath,
CharSequence newpath) |
long |
sysconf(jnr.constants.platform.Sysconf name) |
long |
times(jnr.posix.NativeTimes tms) |
int |
umask(int mask) |
int |
unlink(CharSequence path) |
int |
unsetenv(CharSequence envName) |
int |
utimes(CharSequence path,
Timeval[] times) |
int |
wait(int[] status) |
int |
waitpid(long pid,
int[] status,
int options) |
int |
write(int fd,
byte[] src,
int len) |
int |
write(int fd,
ByteBuffer src,
int len) |
CharSequence crypt(CharSequence key, CharSequence salt)
int chmod(CharSequence filename, int mode)
int fchmod(int fd, int mode)
int chown(CharSequence filename, int user, int group)
int fchown(int fd, int user, int group)
int fstat(int fd, FileStat stat)
int fstat64(int fd, FileStat stat)
String getenv(CharSequence envName)
int getegid()
int setegid(int egid)
int geteuid()
int seteuid(int euid)
int getgid()
String getlogin()
int setgid(int gid)
int getpgid()
int getpgid(int pid)
int setpgid(int pid, int pgid)
int getpgrp()
int setpgrp(int pid, int pgrp)
int getppid()
int getpid()
NativePasswd getpwent()
NativePasswd getpwuid(int which)
NativePasswd getpwnam(CharSequence which)
NativeGroup getgrent()
NativeGroup getgrgid(int which)
NativeGroup getgrnam(CharSequence which)
int setpwent()
int endpwent()
int setgrent()
int endgrent()
int getuid()
int setsid()
int setuid(int uid)
int kill(int pid, int signal)
int dup(int fd)
int dup2(int oldFd, int newFd)
int fcntl(int fd, int fnctl, int arg)
int fcntl(int fd, int fnctl)
@Deprecated int fcntl(int fd, int fnctl, int... arg)
int getdtablesize()
long signal(int sig, LibC.LibCSignalHandler handler)
int lchmod(CharSequence filename, int mode)
int lchown(CharSequence filename, int user, int group)
int link(CharSequence oldpath, CharSequence newpath)
int lstat(CharSequence path, FileStat stat)
int lstat64(CharSequence path, FileStat stat)
int mkdir(CharSequence path, int mode)
int rmdir(CharSequence path)
int stat(CharSequence path, FileStat stat)
int stat64(CharSequence path, FileStat stat)
int symlink(CharSequence oldpath, CharSequence newpath)
int readlink(CharSequence oldpath, ByteBuffer buffer, int len)
int setenv(CharSequence envName, CharSequence envValue, int overwrite)
int umask(int mask)
int unsetenv(CharSequence envName)
int utimes(CharSequence path, Timeval[] times)
int futimes(int fd, Timeval[] times)
int fork()
int waitpid(long pid, int[] status, int options)
int wait(int[] status)
int getpriority(int which, int who)
int setpriority(int which, int who, int prio)
int isatty(int fd)
int read(int fd, ByteBuffer dst, int len)
int write(int fd, ByteBuffer src, int len)
int read(int fd, byte[] dst, int len)
int write(int fd, byte[] src, int len)
int pread(int fd, ByteBuffer src, int len, int offset)
int pread(int fd, byte[] src, int len, int offset)
int pwrite(int fd, ByteBuffer src, int len, int offset)
int pwrite(int fd, byte[] src, int len, int offset)
int lseek(int fd, long offset, int whence)
int close(int fd)
int execv(CharSequence path, CharSequence... argv)
int execve(CharSequence path, CharSequence[] argv, CharSequence[] envp)
int chdir(CharSequence path)
long sysconf(jnr.constants.platform.Sysconf name)
long times(jnr.posix.NativeTimes tms)
int flock(int fd, int mode)
int unlink(CharSequence path)
int open(CharSequence path, int flags, int perm)
int pipe(int[] fds)
int ftruncate(int fd, long offset)
long getcwd(byte[] cwd, int len)
int fsync(int fd)
int fdatasync(int fd)
int socketpair(int domain, int type, int protocol, int[] fds)
int sendmsg(int socket, MsgHdr message, int flags)
int recvmsg(int socket, MsgHdr message, int flags)
Copyright © 2015. All Rights Reserved.