Home
last modified time | relevance | path

Searched refs:userName (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DPasswordAuthentication.java42 private String userName; field in PasswordAuthentication
55 public PasswordAuthentication(String userName, char[] password) { in PasswordAuthentication() argument
56 this.userName = userName; in PasswordAuthentication()
66 return userName; in getUserName()
DSocksSocketImpl.java155 String userName; in authenticate() local
167 userName = pw.getUserName(); in authenticate()
170 userName = java.security.AccessController.doPrivileged( in authenticate()
173 if (userName == null) in authenticate()
176 out.write(userName.length()); in authenticate()
178 out.write(userName.getBytes("ISO-8859-1")); in authenticate()
272 String userName = getUserName(); in connectV4() local
274 out.write(userName.getBytes("ISO-8859-1")); in connectV4()
1089 String userName = ""; in getUserName() local
1092 userName = System.getProperty("user.name"); in getUserName()
[all …]
/libcore/ojluni/src/main/java/java/lang/
DSystem.java988 String userName; in initUnchangeableSystemProperties() local
990 userName = Libcore.os.getpwuid(Libcore.os.getuid()).pw_name; in initUnchangeableSystemProperties()
992 userName = "unknown"; in initUnchangeableSystemProperties()
994 p.put("user.name", userName); in initUnchangeableSystemProperties()