Home
last modified time | relevance | path

Searched defs:uid (Results 1 – 7 of 7) 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.java65 …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()
185 …/** @hide */ public static StructPasswd getpwuid(int uid) throws ErrnoException { return Libcore.o… in getpwuid()
235 …public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown… in lchown()
434 public static void setuid(int uid) throws ErrnoException { Libcore.os.setuid(uid); } in setuid()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java76 @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()
DOs.java49 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()
78 public StructPasswd getpwuid(int uid) throws ErrnoException; in getpwuid()
94 public void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
141 public void setuid(int uid) throws ErrnoException; in setuid()
DForwardingOs.java58 …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()
86 public StructPasswd getpwuid(int uid) throws ErrnoException { return os.getpwuid(uid); } in getpwuid()
102 …public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid… in lchown()
148 public void setuid(int uid) throws ErrnoException { os.setuid(uid); } in setuid()
DPosix.java52 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()
80 public native StructPasswd getpwuid(int uid) throws ErrnoException; in getpwuid()
96 public native void lchown(String path, int uid, int gid) throws ErrnoException; in lchown()
222 public native void setuid(int uid) throws ErrnoException; in setuid()
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp430 jobject getpwuid(uid_t uid) { in getpwuid()
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()
784 static jobject Posix_getpwuid(JNIEnv* env, jobject, jint uid) { in Posix_getpwuid()
940 static void Posix_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Posix_lchown()
1405 static void Posix_setuid(JNIEnv* env, jobject, jint uid) { in Posix_setuid()