Searched refs:uid (Results 1 - 8 of 8) sorted by path

/libcore/luni/src/main/java/android/system/
H A DOs.java73 public static void chown(String path, int uid, int gid) throws ErrnoException { Libcore.os.chown(path, uid, gid); } argument
120 public static void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { Libcore.os.fchown(fd, uid, gid); } argument
200 /** @hide */ public static StructPasswd getpwuid(int uid) throws ErrnoException { return Libcore.os.getpwuid(uid); } argument
252 public static void lchown(String path, int uid, int gid) throws ErrnoException { Libcore.os.lchown(path, uid, gid); } argument
479 public static void setuid(int uid) throws ErrnoException { Libcore.os.setuid(uid); } argument
[all...]
H A DStructUcred.java30 /** The peer process' uid. */
31 public final int uid; field in class:StructUcred
36 public StructUcred(int pid, int uid, int gid) { argument
38 this.uid = uid;
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java77 @Override public void chown(String path, int uid, int gid) throws ErrnoException { argument
79 os.chown(path, uid, gid);
120 @Override public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { argument
122 os.fchown(fd, uid, gid);
152 @Override public void lchown(String path, int uid, int gid) throws ErrnoException { argument
154 os.lchown(path, uid, gid);
H A DForwardingOs.java59 public void chown(String path, int uid, int gid) throws ErrnoException { os.chown(path, uid, gid); } argument
69 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException { os.fchown(fd, uid, gid); } argument
89 public StructPasswd getpwuid(int uid) throws ErrnoException { return os.getpwuid(uid); } argument
106 public void lchown(String path, int uid, int gid) throws ErrnoException { os.lchown(path, uid, gid); } argument
158 public void setuid(int uid) throws ErrnoException { os.setuid(uid); } argument
[all...]
H A DOs.java50 public void chown(String path, int uid, int gid) throws ErrnoException; argument
60 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; argument
81 public StructPasswd getpwuid(int uid) throws ErrnoException; argument
98 public void lchown(String path, int uid, int gid) throws ErrnoException; argument
151 public void setuid(int uid) throws ErrnoException; argument
H A DPosix.java53 public native void chown(String path, int uid, int gid) throws ErrnoException; argument
63 public native void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException; argument
83 public native StructPasswd getpwuid(int uid) throws ErrnoException; argument
100 public native void lchown(String path, int uid, int gid) throws ErrnoException; argument
235 public native void setuid(int uid) throws ErrnoException; argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp464 return env->NewObject(JniConstants::structUcredClass, ctor, u.pid, u.uid, u.gid);
706 jobject getpwuid(uid_t uid) { argument
707 return process("getpwuid_r", getpwuid_r(uid, &mPwd, mBuffer.get(), mBufferSize, &mResult));
783 static void Posix_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { argument
788 throwIfMinusOne(env, "chown", TEMP_FAILURE_RETRY(chown(path.c_str(), uid, gid)));
867 static void Posix_fchown(JNIEnv* env, jobject, jobject javaFd, jint uid, jint gid) { argument
869 throwIfMinusOne(env, "fchown", TEMP_FAILURE_RETRY(fchown(fd, uid, gid)));
1077 static jobject Posix_getpwuid(JNIEnv* env, jobject, jint uid) { argument
1078 return Passwd(env).getpwuid(uid);
1248 static void Posix_lchown(JNIEnv* env, jobject, jstring javaPath, jint uid, jin argument
1799 Posix_setuid(JNIEnv* env, jobject, jint uid) argument
[all...]
/libcore/luni/src/test/java/libcore/io/
H A DOsTest.java110 assertEquals(Libcore.os.getuid(), credentials.uid);

Completed in 101 milliseconds