HomeSort by relevance Sort by last modified time
    Searched defs:getpwuid (Results 1 - 7 of 7) sorted by null

  /external/e2fsprogs/include/nonunix/
pwd.h 21 #define getpwuid(i) NULL macro
  /bionic/libc/bionic/
stubs.cpp 65 // Our implementation of getpwnam(3) and getpwuid(3) use thread-local
68 const passwd* src = by_name ? getpwnam(name) : getpwuid(uid); // NOLINT: see above.
347 passwd* getpwuid(uid_t uid) { // NOLINT: implementing bad function. function
384 passwd *pw = getpwuid(getuid()); // NOLINT: implementing bad function in terms of bad function.
  /libcore/luni/src/main/java/libcore/io/
Os.java 78 public StructPasswd getpwuid(int uid) throws ErrnoException; method in interface:Os
Posix.java 80 public native StructPasswd getpwuid(int uid) throws ErrnoException; method in class:Posix
ForwardingOs.java 86 public StructPasswd getpwuid(int uid) throws ErrnoException { return os.getpwuid(uid); } method in class:ForwardingOs
  /libcore/luni/src/main/java/android/system/
Os.java 185 /** @hide */ public static StructPasswd getpwuid(int uid) throws ErrnoException { return Libcore.os.getpwuid(uid); } method in class:Os
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 430 jobject getpwuid(uid_t uid) { function in class:Passwd
785 return Passwd(env).getpwuid(uid);
    [all...]

Completed in 279 milliseconds