Home
last modified time | relevance | path

Searched defs:gid (Results 1 – 13 of 13) 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.java92 …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/
DUnixUserPrincipals.java64 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
DUnixNativeDispatcher.java332 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()
DUnixFileAttributeViews.java243 final void setOwners(int uid, int gid) throws IOException { in setOwners()
290 int gid = ((UnixUserPrincipals.Group)group).gid(); in setGroup() local
DUnixSecureDirectoryStream.java518 private void setOwners(int uid, int gid) throws IOException { in setOwners()
564 int gid = ((UnixUserPrincipals.Group)group).gid(); in setGroup() local
DUnixFileAttributes.java106 int gid() { return st_gid; } in gid() method in UnixFileAttributes
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java81 @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()
DForwardingOs.java70 …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()
DOs.java55 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()
DLinux.java61 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/
DUnixNativeDispatcher.c564 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/
Dlibcore_io_Linux.cpp1013 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()