Home
last modified time | relevance | path

Searched defs:uid (Results 1 – 13 of 13) sorted by relevance

/libcore/luni/src/main/java/android/system/
DStructUcred.java31 public final int uid; field in StructUcred
36 public StructUcred(int pid, int uid, int gid) { in StructUcred()
DOs.java102 …public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(p… in chown()
152 …public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.… in fchown()
247 …public static StructPasswd getpwuid(int uid) throws ErrnoException { return Libcore.os.getpwuid(ui… in getpwuid()
337 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown… in lchown()
626 public static void setuid(int uid) throws ErrnoException { Libcore.os.setuid(uid); } in setuid()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixUserPrincipals.java58 int uid() { in uid() method in UnixUserPrincipals.User
115 static User fromUid(int uid) { in fromUid()
170 int uid = lookupName(name, false); in lookupUser() 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()
461 static native byte[] getpwuid(int uid) throws UnixException; in getpwuid()
DUnixFileAttributeViews.java243 final void setOwners(int uid, int gid) throws IOException { in setOwners()
273 int uid = ((UnixUserPrincipals.User)owner).uid(); in setOwner() local
DUnixSecureDirectoryStream.java523 private void setOwners(int uid, int gid) throws IOException { in setOwners()
559 int uid = ((UnixUserPrincipals.User)owner).uid(); in setOwner() local
DUnixFileAttributes.java105 int uid() { return st_uid; } in uid() method in UnixFileAttributes
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java84 @Override public void chown(String path, int uid, int gid) throws ErrnoException { in chown()
159 @Override public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { in fchown()
206 @Override public void lchown(String path, int uid, int gid) throws ErrnoException { in lchown()
DOs.java59 public void chown(String path, int uid, int gid) throws ErrnoException; in chown()
77 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown()
98 public StructPasswd getpwuid(int uid) throws ErrnoException; in getpwuid()
120 public void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
181 public void setuid(int uid) throws ErrnoException; in setuid()
DForwardingOs.java87 …public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid);… in chown()
102 …public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { os.fchown(fd, uid,… in fchown()
122 public StructPasswd getpwuid(int uid) throws ErrnoException { return os.getpwuid(uid); } in getpwuid()
145 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid… in lchown()
212 public void setuid(int uid) throws ErrnoException { os.setuid(uid); } in setuid()
DLinux.java61 public native void chown(String path, int uid, int gid) throws ErrnoException; in chown()
77 public native void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; in fchown()
96 public native StructPasswd getpwuid(int uid) throws ErrnoException; in getpwuid()
118 public native void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
254 public native void setuid(int uid) throws ErrnoException; in setuid()
/libcore/ojluni/src/main/native/
DUnixNativeDispatcher.c582 jlong pathAddress, jint uid, jint gid) in Java_sun_nio_fs_UnixNativeDispatcher_chown0()
594 Java_sun_nio_fs_UnixNativeDispatcher_lchown0(JNIEnv* env, jclass this, jlong pathAddress, jint uid,… in Java_sun_nio_fs_UnixNativeDispatcher_lchown0()
606 Java_sun_nio_fs_UnixNativeDispatcher_fchown(JNIEnv* env, jclass this, jint filedes, jint uid, jint … in Java_sun_nio_fs_UnixNativeDispatcher_fchown()
1012 Java_sun_nio_fs_UnixNativeDispatcher_getpwuid(JNIEnv* env, jclass this, jint uid) in Java_sun_nio_fs_UnixNativeDispatcher_getpwuid()
1117 jint uid = -1; in Java_sun_nio_fs_UnixNativeDispatcher_getpwnam0() local
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp797 jobject getpwuid(uid_t uid) { in getpwuid()
1108 static void Linux_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Linux_chown()
1255 static void Linux_fchown(JNIEnv* env, jobject, jobject javaFd, jint uid, jint gid) { in Linux_fchown()
1439 static jobject Linux_getpwuid(JNIEnv* env, jobject, jint uid) { in Linux_getpwuid()
1786 static void Linux_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Linux_lchown()
2368 static void Linux_setuid(JNIEnv* env, jobject, jint uid) { in Linux_setuid()