| /libcore/luni/src/main/java/android/system/ | 
| D | StructUcred.java | 34     public final int gid;  field in StructUcred36     public StructUcred(int pid, int uid, int gid) {  in StructUcred()
 
 | 
| D | Os.java | 124 …public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(p…  in chown()174 …public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.…  in fchown()
 419 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown…  in lchown()
 695     public static void setgid(int gid) throws ErrnoException { Libcore.os.setgid(gid); }  in setgid()
 
 | 
| /libcore/ojluni/src/main/java/sun/nio/fs/ | 
| D | UnixUserPrincipals.java | 64         int gid() {  in gid()  method in UnixUserPrincipals.User126     static Group fromGid(int gid) {  in fromGid()
 178         int gid = lookupName(group, true);  in lookupGroup()  local
 
 | 
| D | UnixNativeDispatcher.java | 349     static void chown(UnixPath path, int uid, int gid) throws UnixException {  in chown()352             chown0(buffer.address(), uid, gid);  in chown()  local
 357     private static native void chown0(long pathAddress, int uid, int gid)  in chown0()
 363     static void lchown(UnixPath path, int uid, int gid) throws UnixException {  in lchown()
 366             lchown0(buffer.address(), uid, gid);  in lchown()  local
 371     private static native void lchown0(long pathAddress, int uid, int gid)  in lchown0()
 377     static native void fchown(int fd, int uid, int gid) throws UnixException;  in fchown()
 501     static native byte[] getgrgid(int gid) throws UnixException;  in getgrgid()
 
 | 
| D | UnixFileAttributeViews.java | 243         final void setOwners(int uid, int gid) throws IOException {  in setOwners()290             int gid = ((UnixUserPrincipals.Group)group).gid();  in setGroup()  local
 
 | 
| D | UnixSecureDirectoryStream.java | 523         private void setOwners(int uid, int gid) throws IOException {  in setOwners()569             int gid = ((UnixUserPrincipals.Group)group).gid();  in setGroup()  local
 
 | 
| D | UnixFileAttributes.java | 106     int gid()   { return st_gid; }  in gid()  method in UnixFileAttributes
 | 
| /libcore/luni/src/main/java/libcore/io/ | 
| D | BlockGuardOs.java | 87     @Override public void chown(String path, int uid, int gid) throws ErrnoException {  in chown()179     @Override public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException {  in fchown()
 226     @Override public void lchown(String path, int uid, int gid) throws ErrnoException {  in lchown()
 
 | 
| D | Os.java | 108     public void chown(String path, int uid, int gid) throws ErrnoException;  in chown()181     public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException;  in fchown()
 388     public void lchown(String path, int uid, int gid) throws ErrnoException;  in lchown()
 615     public void setgid(int gid) throws ErrnoException;  in setgid()
 
 | 
| D | ForwardingOs.java | 171 …public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid);…  in chown()241 …public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { os.fchown(fd, uid,…  in fchown()
 448 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid…  in lchown()
 749     public void setgid(int gid) throws ErrnoException { os.setgid(gid); }  in setgid()
 
 | 
| D | Linux.java | 64     public native void chown(String path, int uid, int gid) throws ErrnoException;  in chown()80     public native void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException;  in fchown()
 157     public native void lchown(String path, int uid, int gid) throws ErrnoException;  in lchown()
 284     public native void setgid(int gid) throws ErrnoException;  in setgid()
 
 | 
| /libcore/ojluni/src/main/native/ | 
| D | UnixNativeDispatcher.c | 596     jlong pathAddress, jint uid, jint gid)  in Java_sun_nio_fs_UnixNativeDispatcher_chown0()608 …io_fs_UnixNativeDispatcher_lchown0(JNIEnv* env, jclass this, jlong pathAddress, jint uid, jint gid)  in Java_sun_nio_fs_UnixNativeDispatcher_lchown0()
 620 …_sun_nio_fs_UnixNativeDispatcher_fchown(JNIEnv* env, jclass this, jint filedes, jint uid, jint gid)  in Java_sun_nio_fs_UnixNativeDispatcher_fchown()
 1079 Java_sun_nio_fs_UnixNativeDispatcher_getgrgid(JNIEnv* env, jclass this, jint gid)  in Java_sun_nio_fs_UnixNativeDispatcher_getgrgid()
 1180     jint gid = -1;  in Java_sun_nio_fs_UnixNativeDispatcher_getgrnam0()  local
 
 | 
| /libcore/luni/src/main/native/ | 
| D | libcore_io_Linux.cpp | 1156 static void Linux_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) {  in Linux_chown()1303 static void Linux_fchown(JNIEnv* env, jobject, jobject javaFd, jint uid, jint gid) {  in Linux_fchown()
 1829 static void Linux_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) {  in Linux_lchown()
 2424 static void Linux_setgid(JNIEnv* env, jobject, jint gid) {  in Linux_setgid()
 
 |