Home
last modified time | relevance | path

Searched refs:getpwnam (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixUserPrincipals.java146 id = (isGroup) ? getgrnam(name) : getpwnam(name); in lookupName()
DUnixNativeDispatcher.java475 static int getpwnam(String name) throws UnixException { in getpwnam() method in UnixNativeDispatcher
/libcore/luni/src/main/java/android/system/
DOs.java244 …public static StructPasswd getpwnam(String name) throws ErrnoException { return Libcore.os.getpwna… in getpwnam() method in Os
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java121 public StructPasswd getpwnam(String name) throws ErrnoException { return os.getpwnam(name); } in getpwnam() method in ForwardingOs
DOs.java97 public StructPasswd getpwnam(String name) throws ErrnoException; in getpwnam() method
DLinux.java95 public native StructPasswd getpwnam(String name) throws ErrnoException; in getpwnam() method in Linux
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp793 jobject getpwnam(const char* name) { in getpwnam() function in Passwd
1436 return Passwd(env).getpwnam(name.c_str()); in Linux_getpwnam()
2626 NATIVE_METHOD(Linux, getpwnam, "(Ljava/lang/String;)Landroid/system/StructPasswd;"),