Home | History | Annotate | Download | only in setup

Lines Matching refs:userName

283         String userName = hostAuth.mLogin;
284 if (userName != null) {
285 // Add a backslash to the start of the username, but only if the username has no
287 if (userName.indexOf('\\') < 0) {
288 userName = "\\" + userName;
290 mUsernameView.setText(userName);
295 // Since username is uneditable, focus on the next editable field
431 String userName = mUsernameView.getText().toString().trim();
432 if (userName.startsWith("\\")) {
433 userName = userName.substring(1);
435 mCacheLoginCredential = userName;
459 sendAuth.setLogin(userName, userPassword);
464 recvAuth.setLogin(userName, userPassword);