Searched defs:gid (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/android/system/ |
D | StructUcred.java | 34 public final int gid; field in StructUcred 36 public StructUcred(int pid, int uid, int gid) { in StructUcred()
|
D | Os.java | 65 …public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(p… in chown() 110 …public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.… in fchown() 235 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown… in lchown() 415 public static void setgid(int gid) throws ErrnoException { Libcore.os.setgid(gid); } in setgid()
|
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 76 @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()
|
D | Os.java | 49 public void chown(String path, int uid, int gid) throws ErrnoException; in chown() 58 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown() 94 public void lchown(String path, int uid, int gid) throws ErrnoException; in lchown() 131 public void setgid(int gid) throws ErrnoException; in setgid()
|
D | ForwardingOs.java | 58 …public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid);… in chown() 67 …public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { os.fchown(fd, uid,… in fchown() 102 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid… in lchown() 138 public void setgid(int gid) throws ErrnoException { os.setgid(gid); } in setgid()
|
D | Posix.java | 52 public native void chown(String path, int uid, int gid) throws ErrnoException; in chown() 61 public native void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown() 96 public native void lchown(String path, int uid, int gid) throws ErrnoException; in lchown() 212 public native void setgid(int gid) throws ErrnoException; in setgid()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Posix.cpp | 500 static void Posix_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_chown() 578 static void Posix_fchown(JNIEnv* env, jobject, jobject javaFd, jint uid, jint gid) { in Posix_fchown() 940 static void Posix_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_lchown() 1267 static void Posix_setgid(JNIEnv* env, jobject, jint gid) { in Posix_setgid()
|