HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 26 - 50 of 466) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/sync/
signin_manager.h 25 // A listener might use this to make note of a username / password
30 : username(in_username),
32 std::string username; member in struct:GoogleServiceSigninSuccessDetails
52 void SetUsername(const std::string& username);
57 void StartSignIn(const std::string& username,
  /external/chromium/third_party/libjingle/source/talk/xmpp/
saslcookiemechanism.h 42 const std::string & username,
46 username_(username),
51 const std::string & username,
54 username_(username),
  /external/dropbear/
svr-auth.c 38 static int checkusername(unsigned char *username, unsigned int userlen);
50 * user decides to try with a different username etc, and is also invoked
94 unsigned char *username = NULL, *servicename = NULL, *methodname = NULL; local
111 username = buf_getstring(ses.payload, &userlen);
121 m_free(username);
136 /* check username is good before continuing */
137 if (checkusername(username, userlen) == DROPBEAR_FAILURE) {
138 /* username is invalid/no shell/etc - send failure */
185 m_free(username);
190 /* Check that the username exists, has a non-empty password, and has a vali
    [all...]
  /external/mksh/
mkmf.sh 164 # No getpwnam() calls (affects "cd ~username/" only)
  /external/openssh/
audit-linux.c 43 linux_audit_record_event(int uid, const char *username,
57 NULL, "login", username ? username : "(unknown)",
58 username == NULL ? uid : -1, hostname, ip, ttyn, success);
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLGSSAPIMechanism.java 56 * @param username the username of the user being authenticated.
61 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException {
65 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh);
75 * @param username the username of the user being authenticated.
80 public void authenticate(String username, String host, String password) throws IOException, XMPPException {
84 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
SASLAnonymous.java 42 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException {
46 public void authenticate(String username, String host, String password) throws IOException {
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKCredential.h 38 WK_EXPORT WKCredentialRef WKCredentialCreate(WKStringRef username, WKStringRef password, WKCredentialPersistence);
  /external/apache-http/src/org/apache/http/auth/
NTCredentials.java 58 * The constructor with the fully qualified username and password combined
61 * @param usernamePassword the domain/username:password formed string
66 throw new IllegalArgumentException("Username:password string may not be null");
68 String username; local
71 username = usernamePassword.substring(0, atColon);
74 username = usernamePassword;
77 int atSlash = username.indexOf('/');
80 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH),
81 username.substring(atSlash + 1));
85 username.substring(atSlash + 1))
    [all...]
  /external/chromium/net/http/
http_auth_handler_ntlm.cc 32 const string16* username,
39 username,
45 if (!username || !password) {
46 LOG(ERROR) << "Username and password are expected to be non-NULL.";
57 // |username| may be in the form "DOMAIN\user". Parse it into the two
62 size_t backslash_idx = username->find(backslash_character);
64 user = *username;
66 domain = username->substr(0, backslash_idx);
67 user = username->substr(backslash_idx + 1);
http_auth_handler.cc 65 int HttpAuthHandler::GenerateAuthToken(const string16* username,
72 DCHECK((username == NULL) == (password == NULL));
73 DCHECK(username != NULL || AllowsDefaultCredentials());
78 int rv = GenerateAuthTokenImpl(username, password, request,
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
commit.py 52 username = None
62 commit_text = scm.commit_with_message(self._commit_message, git_commit=self._options.git_commit, username=username, password=password, force_squash=force_squash, changed_files=self._changed_files(state))
74 username = self._tool.user.prompt("%s login: " % e.server_host, repeat=5)
75 if not username:
76 raise ScriptError("You need to specify the username on %s to perform the commit as." % e.server_host)
78 password = self._tool.user.prompt_password("%s password for %s: " % (e.server_host, username), repeat=5)
80 raise ScriptError("You need to specify the password for %s on %s to perform the commit." % (username, e.server_host))
  /external/webkit/Tools/Scripts/webkitpy/common/net/
credentials_unittest.py 105 def _assert_security_call(self, username=None):
110 OutputCapture().assert_outputs(self, credentials._run_security_tool, [username], expected_stderr=expected_stderr)
113 if username:
114 security_args += ["-a", username]
119 self._assert_security_call(username="foo")
128 username, password = credentials._credentials_from_environment()
129 self.assertEquals(username, "foo")
139 def _credentials_from_keychain(self, username):
155 def get_password(self, host, username):
162 def _credentials_from_keychain(self, username)
    [all...]
  /bionic/tests/
stubs_test.cpp 28 #define CHECK_GETPWNAM_FOR(username, uid, uid_type) \
29 SCOPED_TRACE(username); \
30 ASSERT_NO_FATAL_FAILURE(check_getpwnam(username, uid, uid_type));
37 static void check_getpwnam(const char* username, uid_t uid, uid_type_t uid_type) {
42 EXPECT_STREQ(username, pwd->pw_name);
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 120 private String username; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
128 this.username = username;
173 * Returns the username(nickname) associated with the user.
175 * @return the username associated with the user.
178 return username;
206 if (username != null) {
207 buf.append(" username=\"").append(username).append("\"");
260 String username = parser.getAttributeValue("", "username"); local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
auth_attempt_state.cc 16 AuthAttemptState::AuthAttemptState(const std::string& username,
22 : username(username),
37 AuthAttemptState::AuthAttemptState(const std::string& username,
39 : username(username),
user_manager.h 104 void SaveUserImage(const std::string& username,
108 void SaveUserImagePath(const std::string& username,
113 int GetUserDefaultImageIndex(const std::string& username);
116 virtual void OnImageLoaded(const std::string& username,
144 FilePath GetImagePathForUser(const std::string& username);
152 void SetDefaultUserImage(const std::string& username);
157 // Cache for user images. Stores image for each username.
test_attempt_state.h 19 TestAttemptState(const std::string& username,
26 TestAttemptState(const std::string& username, const std::string& ascii_hash);
screen_observer.h 48 virtual void OnSetUserNamePassword(const std::string& username,
  /external/chromium/chrome/browser/ui/login/
login_prompt.h 59 void SetAuth(const string16& username, const string16& password);
102 void NotifyAuthSupplied(const string16& username,
113 void SetAuthDeferred(const string16& username,
182 const string16& username,
185 username_(username),
187 const string16& username() const { return username_; } function in class:AuthSuppliedLoginNotificationDetails
191 // The username that was used for the authentication.
200 // Prompts the user for their username and password. This is designed to
  /external/chromium/chrome/browser/sync/util/
user_settings_win.cc 34 // Returns the username whose credentials have been persisted as well as
37 string* username,
47 *username = query.column_string(0);
  /external/chromium/chrome/browser/ui/webui/
ntp_login_handler.cc 50 std::string username = web_ui_->GetProfile()->GetPrefs()->GetString( local
52 StringValue string_value(username);
  /external/ganymed-ssh2/examples/
PortForwarding.java 27 String username = "joe"; local
44 boolean isAuthenticated = conn.authenticateWithPublicKey(username, keyfile, keyfilePass);
  /external/chromium/net/ftp/
ftp_transaction.h 46 virtual int RestartWithAuth(const string16& username,
  /external/chromium/third_party/libjingle/source/talk/base/
proxyinfo.h 51 std::string username; member in struct:talk_base::ProxyInfo

Completed in 1457 milliseconds

12 3 4 5 6 7 8 91011>>