OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StructPasswd
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/java/libcore/io/
StructPasswd.java
24
public final class
StructPasswd
{
31
public
StructPasswd
(String pw_name, int pw_uid, int pw_gid, String pw_dir, String pw_shell) {
Os.java
62
public
StructPasswd
getpwnam(String name) throws ErrnoException;
63
public
StructPasswd
getpwuid(int uid) throws ErrnoException;
Posix.java
64
public native
StructPasswd
getpwnam(String name) throws ErrnoException;
65
public native
StructPasswd
getpwuid(int uid) throws ErrnoException;
ForwardingOs.java
70
public
StructPasswd
getpwnam(String name) throws ErrnoException { return os.getpwnam(name); }
71
public
StructPasswd
getpwuid(int uid) throws ErrnoException { return os.getpwuid(uid); }
/libcore/luni/src/main/java/java/lang/
System.java
56
import libcore.io.
StructPasswd
;
315
StructPasswd
passwd = Libcore.os.getpwuid(Libcore.os.getuid());
Completed in 528 milliseconds