public class FallbackPOSIX extends Object implements org.jruby.ext.posix.POSIX
| Constructor and Description |
|---|
FallbackPOSIX() |
| Modifier and Type | Method and Description |
|---|---|
org.jruby.ext.posix.FileStat |
allocateStat() |
int |
chmod(String filename,
int mode) |
int |
chown(String filename,
int user,
int group) |
int |
endgrent() |
int |
endpwent() |
int |
errno() |
void |
errno(int value) |
int |
exec(String cmd,
String... args) |
int |
exec(String cmd,
String[] args,
String[] env) |
int |
execv(String cmd,
String[] args) |
int |
execve(String cmd,
String[] args,
String[] env) |
int |
fork() |
org.jruby.ext.posix.FileStat |
fstat(FileDescriptor descriptor) |
int |
getegid() |
String |
getenv(String name) |
int |
geteuid() |
int |
getgid() |
org.jruby.ext.posix.Group |
getgrent() |
org.jruby.ext.posix.Group |
getgrgid(int which) |
org.jruby.ext.posix.Group |
getgrnam(String which) |
String |
getlogin() |
int |
getpgid() |
int |
getpgid(int pid) |
int |
getpgrp() |
int |
getpid() |
int |
getppid() |
int |
getpriority(int which,
int who) |
org.jruby.ext.posix.Passwd |
getpwent() |
org.jruby.ext.posix.Passwd |
getpwnam(String which) |
org.jruby.ext.posix.Passwd |
getpwuid(int which) |
int |
getuid() |
boolean |
isatty(FileDescriptor descriptor) |
boolean |
isNative() |
int |
kill(int pid,
int signal) |
int |
lchmod(String filename,
int mode) |
int |
lchown(String filename,
int user,
int group) |
org.jruby.ext.posix.LibC |
libc() |
int |
link(String oldpath,
String newpath) |
org.jruby.ext.posix.FileStat |
lstat(String path) |
int |
mkdir(String path,
int mode) |
String |
readlink(String path) |
int |
setegid(int egid) |
int |
setenv(String name,
String value,
int i) |
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) |
org.jruby.ext.posix.FileStat |
stat(String path) |
int |
symlink(String oldpath,
String newpath) |
int |
umask(int mask) |
int |
unsetenv(String name) |
int |
utimes(String path,
long[] atimeval,
long[] mtimeval) |
int |
wait(int[] status) |
int |
waitpid(int pid,
int[] status,
int flags) |
public int chmod(String filename, int mode)
chmod in interface org.jruby.ext.posix.POSIXpublic int chown(String filename, int user, int group)
chown in interface org.jruby.ext.posix.POSIXpublic int fork()
fork in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.FileStat fstat(FileDescriptor descriptor)
fstat in interface org.jruby.ext.posix.POSIXpublic int getegid()
getegid in interface org.jruby.ext.posix.POSIXpublic int geteuid()
geteuid in interface org.jruby.ext.posix.POSIXpublic int seteuid(int euid)
seteuid in interface org.jruby.ext.posix.POSIXpublic int getgid()
getgid in interface org.jruby.ext.posix.POSIXpublic String getlogin()
getlogin in interface org.jruby.ext.posix.POSIXpublic int getpgid()
getpgid in interface org.jruby.ext.posix.POSIXpublic int getpgid(int pid)
getpgid in interface org.jruby.ext.posix.POSIXpublic int getpgrp()
getpgrp in interface org.jruby.ext.posix.POSIXpublic int getpid()
getpid in interface org.jruby.ext.posix.POSIXpublic int getppid()
getppid in interface org.jruby.ext.posix.POSIXpublic int getpriority(int which,
int who)
getpriority in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.Passwd getpwent()
getpwent in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.Passwd getpwuid(int which)
getpwuid in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.Passwd getpwnam(String which)
getpwnam in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.Group getgrgid(int which)
getgrgid in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.Group getgrnam(String which)
getgrnam in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.Group getgrent()
getgrent in interface org.jruby.ext.posix.POSIXpublic int endgrent()
endgrent in interface org.jruby.ext.posix.POSIXpublic int setgrent()
setgrent in interface org.jruby.ext.posix.POSIXpublic int endpwent()
endpwent in interface org.jruby.ext.posix.POSIXpublic int setpwent()
setpwent in interface org.jruby.ext.posix.POSIXpublic int getuid()
getuid in interface org.jruby.ext.posix.POSIXpublic boolean isatty(FileDescriptor descriptor)
isatty in interface org.jruby.ext.posix.POSIXpublic int kill(int pid,
int signal)
kill in interface org.jruby.ext.posix.POSIXpublic int lchmod(String filename, int mode)
lchmod in interface org.jruby.ext.posix.POSIXpublic int lchown(String filename, int user, int group)
lchown in interface org.jruby.ext.posix.POSIXpublic int link(String oldpath, String newpath)
link in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.FileStat lstat(String path)
lstat in interface org.jruby.ext.posix.POSIXpublic int mkdir(String path, int mode)
mkdir in interface org.jruby.ext.posix.POSIXpublic String readlink(String path) throws IOException
readlink in interface org.jruby.ext.posix.POSIXIOExceptionpublic int setsid()
setsid in interface org.jruby.ext.posix.POSIXpublic int setgid(int gid)
setgid in interface org.jruby.ext.posix.POSIXpublic int setegid(int egid)
setegid in interface org.jruby.ext.posix.POSIXpublic int setpgid(int pid,
int pgid)
setpgid in interface org.jruby.ext.posix.POSIXpublic int setpgrp(int pid,
int pgrp)
setpgrp in interface org.jruby.ext.posix.POSIXpublic int setpriority(int which,
int who,
int prio)
setpriority in interface org.jruby.ext.posix.POSIXpublic int setuid(int uid)
setuid in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.FileStat stat(String path)
stat in interface org.jruby.ext.posix.POSIXpublic int symlink(String oldpath, String newpath)
symlink in interface org.jruby.ext.posix.POSIXpublic int umask(int mask)
umask in interface org.jruby.ext.posix.POSIXpublic int utimes(String path, long[] atimeval, long[] mtimeval)
utimes in interface org.jruby.ext.posix.POSIXpublic int waitpid(int pid,
int[] status,
int flags)
waitpid in interface org.jruby.ext.posix.POSIXpublic int wait(int[] status)
wait in interface org.jruby.ext.posix.POSIXpublic int errno()
errno in interface org.jruby.ext.posix.POSIXpublic void errno(int value)
errno in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.LibC libc()
libc in interface org.jruby.ext.posix.POSIXpublic boolean isNative()
isNative in interface org.jruby.ext.posix.POSIXpublic String getenv(String name)
getenv in interface org.jruby.ext.posix.POSIXpublic int setenv(String name, String value, int i)
setenv in interface org.jruby.ext.posix.POSIXpublic int unsetenv(String name)
unsetenv in interface org.jruby.ext.posix.POSIXpublic int exec(String cmd, String... args)
exec in interface org.jruby.ext.posix.POSIXpublic int exec(String cmd, String[] args, String[] env)
exec in interface org.jruby.ext.posix.POSIXpublic int execv(String cmd, String[] args)
execv in interface org.jruby.ext.posix.POSIXpublic int execve(String cmd, String[] args, String[] env)
execve in interface org.jruby.ext.posix.POSIXpublic org.jruby.ext.posix.FileStat allocateStat()
allocateStat in interface org.jruby.ext.posix.POSIXCopyright © 2013. All rights reserved