/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 | 92 …public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(p… in chown() 139 …public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.… in fchown() 284 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown… in lchown() 485 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.User 126 static Group fromGid(int gid) { in fromGid() 178 int gid = lookupName(group, true); in lookupGroup() local
|
D | UnixNativeDispatcher.java | 332 static void chown(UnixPath path, int uid, int gid) throws UnixException { in chown() 335 chown0(buffer.address(), uid, gid); in chown() local 340 private static native void chown0(long pathAddress, int uid, int gid) in chown0() 346 static void lchown(UnixPath path, int uid, int gid) throws UnixException { in lchown() 349 lchown0(buffer.address(), uid, gid); in lchown() local 354 private static native void lchown0(long pathAddress, int uid, int gid) in lchown0() 360 static native void fchown(int fd, int uid, int gid) throws UnixException; in fchown() 468 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 | 518 private void setOwners(int uid, int gid) throws IOException { in setOwners() 564 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 | 81 @Override public void chown(String path, int uid, int gid) throws ErrnoException { in chown() 140 @Override public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { in fchown() 172 @Override public void lchown(String path, int uid, int gid) throws ErrnoException { in lchown()
|
D | ForwardingOs.java | 70 …public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid);… in chown() 80 …public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { os.fchown(fd, uid,… in fchown() 121 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid… in lchown() 161 public void setgid(int gid) throws ErrnoException { os.setgid(gid); } in setgid()
|
D | Os.java | 55 public void chown(String path, int uid, int gid) throws ErrnoException; in chown() 65 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown() 107 public void lchown(String path, int uid, int gid) throws ErrnoException; in lchown() 148 public void setgid(int gid) throws ErrnoException; in setgid()
|
D | Linux.java | 61 public native void chown(String path, int uid, int gid) throws ErrnoException; in chown() 71 public native void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown() 112 public native void lchown(String path, int uid, int gid) throws ErrnoException; in lchown() 235 public native void setgid(int gid) throws ErrnoException; in setgid()
|
/libcore/ojluni/src/main/native/ |
D | UnixNativeDispatcher.c | 564 jlong pathAddress, jint uid, jint gid) in Java_sun_nio_fs_UnixNativeDispatcher_chown0() 576 …io_fs_UnixNativeDispatcher_lchown0(JNIEnv* env, jclass this, jlong pathAddress, jint uid, jint gid) in Java_sun_nio_fs_UnixNativeDispatcher_lchown0() 588 …_sun_nio_fs_UnixNativeDispatcher_fchown(JNIEnv* env, jclass this, jint filedes, jint uid, jint gid) in Java_sun_nio_fs_UnixNativeDispatcher_fchown() 1017 Java_sun_nio_fs_UnixNativeDispatcher_getgrgid(JNIEnv* env, jclass this, jint gid) in Java_sun_nio_fs_UnixNativeDispatcher_getgrgid() 1118 jint gid = -1; in Java_sun_nio_fs_UnixNativeDispatcher_getgrnam0() local
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 1013 static void Linux_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Linux_chown() 1097 static void Linux_fchown(JNIEnv* env, jobject, jobject javaFd, jint uid, jint gid) { in Linux_fchown() 1620 static void Linux_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Linux_lchown() 2068 static void Linux_setgid(JNIEnv* env, jobject, jint gid) { in Linux_setgid()
|