HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 276 - 300 of 872) sorted by null

<<11121314151617181920>>

  /external/chromium/net/http/
http_auth_handler_basic.cc 71 const string16* username,
76 // TODO(eroman): is this the right encoding of username/password?
78 if (!base::Base64Encode(UTF16ToUTF8(*username) + ":" + UTF16ToUTF8(*password),
  /external/chromium_org/remoting/jingle_glue/
xmpp_signal_strategy.h 50 const std::string& username,
73 void SetAuthInfo(const std::string& username,
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver_main.cc 44 virtual bool GetKey(const std::string& username, const std::string& realm,
46 // File is stored as lines of <username>=<HA1>.
47 // Generate HA1 via "echo -n "<username>:<realm>:<password>" | md5sum"
49 bool ret = file_.GetStringValue(username, &hex);
p2ptransport.cc 48 // Limits for GICE and ICE username sizes.
163 const std::string& username,
166 if (username.size() > kMaxGiceUsernameSize)
167 return BadParse("candidate username is too long", error);
168 if (!talk_base::Base64::IsBase64Encoded(username))
169 return BadParse("candidate username has non-base64 encoded characters",
172 if (username.size() > kMaxIceUsernameSize)
173 return BadParse("candidate username is too long", error);
225 if (!VerifyUsernameFormat(proto, candidate->username(), error))
251 elem->SetAttr(QN_USERNAME, candidate.username());
    [all...]
port_unittest.cc 533 const std::string& username) {
536 new StunByteStringAttribute(STUN_ATTR_USERNAME, username));
540 const std::string& username,
543 addr.ipaddr(), 0, 0, username, password);
548 const std::string& username,
553 TestPort* port = CreateTestPort(addr, username, password);
1486 std::string username; local
1553 std::string username; local
1604 std::string username; local
1663 std::string username; local
1733 std::string username; local
1775 std::string username; local
1845 std::string username; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
connectivitychecker_unittest.cc 51 const std::string& username, const std::string& password)
53 username, password) {
70 const std::string& username, const std::string& password,
73 username, password, server_addr) {
124 ss << "username=" << kUserName << std::endl
214 const std::string& username, const std::string& password,
219 username, password,
223 const std::string& username, const std::string& password,
228 username, password);
basicportallocator.h 45 RelayCredentials(const std::string& username,
47 : username(username),
51 std::string username; member in struct:cricket::RelayCredentials
222 std::string username; member in struct:cricket::PortConfiguration
229 const std::string& username,
  /external/chromium_org/third_party/tlslite/tlslite/integration/
HTTPTLSConnection.py 60 username=None, password=None, sharedKey=None,
70 - username, password (SRP)
71 - username, sharedKey (shared-key)
102 @type username: str
103 @param username: SRP or shared-key username. Requires the
108 Requires the 'username' argument.
112 Requires the 'username' argument.
161 username, password, sharedKey,
POP3_TLS.py 15 username=None, password=None, sharedKey=None,
25 - username, password (SRP)
26 - username, sharedKey (shared-key)
52 @type username: str
53 @param username: SRP or shared-key username. Requires the
58 Requires the 'username' argument.
62 Requires the 'username' argument.
128 username, password, sharedKey,
  /external/smack/src/org/jivesoftware/smack/packet/
Registration.java 121 public void setUsername(String username){
122 attributes.put("username", username);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
register.py 74 self.username = config['username']
107 First we try to read the username/password from $HOME/.pypirc,
109 [distutils] containing username and password entries (both
117 username: fred
128 # see if we can short-cut and get the username/password from the
132 username = self.username
136 username = password = ''
156 # get the username and passwor
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
register.py 74 self.username = config['username']
107 First we try to read the username/password from $HOME/.pypirc,
109 [distutils] containing username and password entries (both
117 username: fred
128 # see if we can short-cut and get the username/password from the
132 username = self.username
136 username = password = ''
156 # get the username and passwor
    [all...]
  /external/chromium/chrome/browser/
browser_signin.cc 202 std::string username; local
207 !result->GetString("user", &username) ||
215 username, password, captcha, access_code);
250 std::string username = local
252 VLOG(1) << "GetSignedInUsername: " << username;
253 return username;
  /external/chromium/chrome/browser/chromeos/login/
username_view.cc 24 // Username label background color.
28 // Holds the frame width for the small shaped username view.
77 UsernameView::UsernameView(const std::wstring& username, bool use_small_shape)
78 : views::Label(username.empty()
79 ? UTF16ToWide(l10n_util::GetStringUTF16(IDS_GUEST)) : username),
81 is_guest_(username.empty()) {
96 const std::wstring& username, bool use_small_shape) {
97 return new HalfRoundedView<UsernameView>(username, use_small_shape);
  /external/chromium/chrome/browser/sync/util/
user_settings_unittest.cc 253 settings.SetAuthTokenForService("username", "service", "");
254 std::string username; local
256 ASSERT_TRUE(settings.GetLastUserAndServiceToken("service", &username,
259 EXPECT_EQ("username", username);
267 settings.SetAuthTokenForService("username", "service",
271 std::string username; local
273 ASSERT_TRUE(settings.GetLastUserAndServiceToken("service", &username,
280 EXPECT_EQ("username", username);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_login_handler.cc 133 std::string username = profile->GetPrefs()->GetString( local
140 if (username.empty()) {
205 std::string username = profile->GetPrefs()->GetString( local
210 if (!username.empty()) {
228 header = CreateSpanWithClass(UTF8ToUTF16(username), "profile-name");
251 base::FundamentalValue is_user_signed_in(!username.empty());
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
string-validate-input.js 14 username = makeName(6);
15 (k%2)?email=username+"@mac.com":email=username+"(at)mac.com";
  /frameworks/base/core/java/com/android/internal/net/
VpnProfile.java 53 public String username = ""; // 3 field in class:VpnProfile
78 username = in.readString();
99 out.writeString(username);
133 profile.username = values[3];
146 profile.saveLogin = !profile.username.isEmpty() || !profile.password.isEmpty();
158 builder.append('\0').append(saveLogin ? username : "");
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardAccountView.java 208 * Given the string the user entered in the 'username' field, find
213 * - if they didn't include a domain, an exact match of the username, or
215 * match of the username.
223 private Account findIntendedAccount(String username) {
228 // typed only the username (and not the domain), or got
235 if (username.equals(a.name)) {
237 } else if (username.equalsIgnoreCase(a.name)) {
239 } else if (username.indexOf('@') < 0) {
243 if (username.equals(aUsername)) {
245 } else if (username.equalsIgnoreCase(aUsername))
    [all...]
  /external/openssh/openbsd-compat/
bsd-cray.c 112 cray_login_failure(char *username, int errcode)
114 struct udb *ueptr; /* UDB pointer for username */
124 if ((ueptr = getudbnam(username)) == UDB_NULL)
130 fsent.uname = username;
154 cray_access_denied(char *username)
156 struct udb *ueptr; /* UDB pointer for username */
161 if ((ueptr = getudbnam(username)) == UDB_NULL)
168 cray_login_failure(username, errcode);
183 cray_setup (uid_t uid, char *username, const char *command)
233 if ((up = getudbnam(username)) == UDB_NULL
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
user_manager_impl.cc 626 const std::string& username,
631 User* user = FindUserAndModify(username);
635 GetUserFlow(username)->HandleOAuthTokenStatusChange(oauth_token_status);
639 if (IsUserNonCryptohomeDataEphemeral(username))
645 oauth_status_update->SetWithoutPathExpansion(username,
650 const std::string& username) const {
659 username, &oauth_token_status)) {
663 GetUserFlow(username)->HandleOAuthTokenStatusChange(result);
669 void UserManagerImpl::SaveUserDisplayName(const std::string& username,
673 User* user = FindUserAndModify(username);
    [all...]
  /external/chromium_org/url/third_party/mozilla/
url_parse.cc 72 Component* username,
74 // Find the first colon in the user section, which separates the username and
81 // Found separator: <username>:<password>
82 *username = Component(user.begin, colon_offset);
86 // No separator, treat everything as the username
87 *username = user;
145 Component* username,
151 username->reset();
167 username, password);
172 username->reset()
    [all...]
  /external/wpa_supplicant_8/src/crypto/
ms_funcs.c 75 * @username: 0-to-256-char UserName (IN)
76 * @username_len: Length of username
81 const u8 *username, size_t username_len,
92 addr[2] = username;
161 * @username: 0-to-256-char UserName (IN)
162 * @username_len: Length of username
169 const u8 *username, size_t username_len,
176 if (challenge_hash(peer_challenge, auth_challenge, username,
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_mschapv2.c 290 const u8 *username, *user; local
335 username = sm->identity;
338 if (username[i] == '\\') {
340 username += i + 1;
356 os_memcmp(username, user, username_len) != 0) {
359 "name", username, username_len);
367 username, username_len);
372 username, username_len,
378 username, username_len,
396 * calculate it here so that peer_challenge and username nee
    [all...]
  /external/smack/src/org/jivesoftware/smack/
SASLAuthentication.java.orig 207 * The server may assign a full JID with a username or resource different than the requested
210 * @param username the username that is authenticating with the server.
216 public String authenticate(String username, String resource, CallbackHandler cbh)
237 currentMechanism.authenticate(username, connection.getHost(), cbh);
289 * The server may assign a full JID with a username or resource different than the requested
292 * @param username the username that is authenticating with the server.
298 public String authenticate(String username, String password, String resource)
319 currentMechanism.authenticate(username, connection.getServiceName(), password);
    [all...]

Completed in 1963 milliseconds

<<11121314151617181920>>