Home
last modified time | relevance | path

Searched defs:gid (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/main/java/android/system/
DStructUcred.java34 public final int gid; field in StructUcred
36 public StructUcred(int pid, int uid, int gid) { in StructUcred()
DOs.java67 …public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(p… in chown()
114 …public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.… in fchown()
246 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown… in lchown()
439 public static void setgid(int gid) throws ErrnoException { Libcore.os.setgid(gid); } in setgid()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java76 @Override public void chown(String path, int uid, int gid) throws ErrnoException { in chown()
119 @Override public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { in fchown()
151 @Override public void lchown(String path, int uid, int gid) throws ErrnoException { in lchown()
DOs.java50 public void chown(String path, int uid, int gid) throws ErrnoException; in chown()
60 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown()
98 public void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
137 public void setgid(int gid) throws ErrnoException; in setgid()
DForwardingOs.java59 …public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid);… in chown()
69 …public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { os.fchown(fd, uid,… in fchown()
106 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid… in lchown()
144 public void setgid(int gid) throws ErrnoException { os.setgid(gid); } in setgid()
DPosix.java53 public native void chown(String path, int uid, int gid) throws ErrnoException; in chown()
63 public native void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown()
100 public native void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
221 public native void setgid(int gid) throws ErrnoException; in setgid()
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp673 static void Posix_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_chown()
757 static void Posix_fchown(JNIEnv* env, jobject, jobject javaFd, jint uid, jint gid) { in Posix_fchown()
1146 static void Posix_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_lchown()
1552 static void Posix_setgid(JNIEnv* env, jobject, jint gid) { in Posix_setgid()