HomeSort by relevance Sort by last modified time
    Searched defs:getpwuid (Results 1 - 6 of 6) 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.
345 passwd* getpwuid(uid_t uid) { // NOLINT: implementing bad function. function
382 passwd *pw = getpwuid(getuid()); // NOLINT: implementing bad function in terms of bad function.
  /libcore/luni/src/main/java/libcore/io/
Os.java 63 public StructPasswd getpwuid(int uid) throws ErrnoException; method in interface:Os
Posix.java 65 public native StructPasswd getpwuid(int uid) throws ErrnoException; method in class:Posix
ForwardingOs.java 71 public StructPasswd getpwuid(int uid) throws ErrnoException { return os.getpwuid(uid); } method in class:ForwardingOs
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 372 jobject getpwuid(uid_t uid) { function in class:Passwd
730 return Passwd(env).getpwuid(uid);
    [all...]

Completed in 131 milliseconds