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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 46 private final String username; field in class:BasicUserPrincipal
48 public BasicUserPrincipal(final String username) {
50 if (username == null) {
53 this.username = username;
57 return this.username;
63 hash = LangUtils.hashCode(hash, this.username);
73 if (LangUtils.equals(this.username, that.username)) {
84 buffer.append(this.username);
    [all...]
NTUserPrincipal.java 46 private final String username; field in class:NTUserPrincipal
52 final String username) {
54 if (username == null) {
57 this.username = username;
67 buffer.append(this.username);
70 this.ntname = this.username;
83 return this.username;
89 hash = LangUtils.hashCode(hash, this.username);
100 if (LangUtils.equals(this.username, that.username
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 38 def get_contact_info(cls, username):
39 if username not in (None, ''):
40 query = cls.gql('WHERE handle = :1', username)
45 def get_contact_last_updated(cls, username):
46 if username not in (None, ''):
47 query = cls.gql('WHERE handle = :1', username)
52 def get_contact_id(cls, username):
53 if username not in (None, ''):
54 query = cls.gql('WHERE handle = :1', username)
59 def get_contact_status(cls, username)
    [all...]
  /external/chromium/net/ftp/
ftp_auth_cache.cc 16 const string16& username,
19 username(username),
37 void FtpAuthCache::Add(const GURL& origin, const string16& username,
44 entry->username = username;
47 entries_.push_front(Entry(origin, username, password));
55 void FtpAuthCache::Remove(const GURL& origin, const string16& username,
58 if (it->origin == origin && it->username == username &
    [all...]
ftp_auth_cache.h 30 Entry(const GURL& origin, const string16& username,
35 string16 username; member in struct:net::FtpAuthCache::Entry
45 // Add an entry for |origin| to the cache (consisting of |username| and
48 void Add(const GURL& origin, const string16& username,
52 // |username| and |password|.
53 void Remove(const GURL& origin, const string16& username,
  /external/wpa_supplicant_8/src/eap_peer/
mschapv2.c 15 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len)
26 if (username[i] == '\\') {
28 return username + i + 1;
32 return username;
44 const u8 *username; local
51 username = mschapv2_remove_domain(identity, &username_len);
52 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: Username",
53 username, username_len);
59 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
60 username, username_len)
    [all...]
mschapv2.h 17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
  /external/webkit/Tools/Scripts/webkitpy/common/net/
credentials.py 64 return (Git.read_git_config(self.git_prefix + "username"),
84 username = self._keychain_value_with_label("^\s*\"acct\"<blob>=",
88 return [username, password]
90 def _run_security_tool(self, username=None):
98 if username:
99 security_command += ["-a", username]
112 def _credentials_from_keychain(self, username=None):
114 return [username, None]
116 security_output = self._run_security_tool(username)
127 return (self._read_environ("username"), self._read_environ("password")
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
test_attempt_state.cc 14 TestAttemptState::TestAttemptState(const std::string& username,
20 : AuthAttemptState(username,
28 TestAttemptState::TestAttemptState(const std::string& username,
30 : AuthAttemptState(username, ascii_hash) {
user_image_loader.h 31 virtual void OnImageLoaded(const std::string& username,
41 // Start reading the image for |username| from |filepath| on the file thread.
43 void Start(const std::string& username,
54 ImageInfo(const std::string& username, bool should_save)
55 : username(username),
59 std::string username; member in struct:chromeos::UserImageLoader::ImageInfo
dom_login_display.h 56 virtual void OnBeforeUserRemoved(const std::string& username) OVERRIDE;
58 virtual void OnUserRemoved(const std::string& username) OVERRIDE;
66 virtual void Login(const std::string& username,
username_view.h 25 // Returns the shaped username view to be used on the login screen. If
29 // Empty |username| stands for guest user.
30 static UsernameView* CreateShapedUsernameView(const std::wstring& username,
34 // Constructs username view for the given |username|. Consider using
36 // Empty |username| stands for guest user.
37 UsernameView(const std::wstring& username, bool use_small_shape);
53 // Paints username to the bitmap with the bounds given.
56 // Holds painted username.
dom_login_display.cc 54 void DOMLoginDisplay::OnBeforeUserRemoved(const std::string& username) {
64 void DOMLoginDisplay::OnUserRemoved(const std::string& username) {
89 void DOMLoginDisplay::Login(const std::string& username,
92 delegate_->Login(username, password);
login_display.h 24 virtual void OnBeforeUserRemoved(const std::string& username) = 0;
27 virtual void OnUserRemoved(const std::string& username) = 0;
45 // Sign in using |username| and |password| specified.
47 virtual void Login(const std::string& username,
54 virtual void OnUserSelected(const std::string& username) = 0;
  /external/chromium/chrome/browser/ui/login/
login_model.h 15 // Called by the model when a username,password pair has been identified
17 virtual void OnAutofillDataAvailable(const std::wstring& username,
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 60 public void proceed(String username, String password) {
  /external/smack/src/org/jivesoftware/smack/
UserAuthentication.java 37 * the server. The server may assign a full JID with a username and resource different than
43 * @param username the requested username (authorization ID) for authenticating to the server
50 String authenticate(String username, String resource, CallbackHandler cbh) throws
55 * the server. The server may assign a full JID with a username and resource different than
61 * @param username the username that is authenticating with the server.
67 String authenticate(String username, String password, String resource) throws
  /external/smack/src/org/jivesoftware/smack/packet/
Authentication.java 31 private String username = null; field in class:Authentication
49 * Returns the username, or <tt>null</tt> if the username hasn't been sent.
51 * @return the username.
54 return username;
58 * Sets the username.
60 * @param username the username.
62 public void setUsername(String username) {
63 this.username = username
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKCredential.cpp 40 WKCredentialRef WKCredentialCreate(WKStringRef username, WKStringRef password, WKCredentialPersistence persistence)
42 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence));
  /external/chromium/chrome/browser/policy/
device_policy_identity_strategy.cc 69 const std::string& username,
71 username_ = username;
92 bool DevicePolicyIdentityStrategy::GetCredentials(std::string* username,
94 *username = username_;
97 return !username->empty() && !auth_token->empty();
  /external/chromium/third_party/libjingle/source/talk/base/
autodetectproxy.h 58 void set_auth_info(bool use_auth, const std::string& username,
61 proxy_.username = username;
  /external/chromium/third_party/libjingle/source/talk/examples/login/
login_main.cc 41 std::string username; local
42 std::getline(std::cin, username);
49 xcs.set_user(username.c_str());
  /external/chromium/chrome/browser/password_manager/
ie7_password.h 21 // Encrypted data containing the username, password and some more undocumented
31 // Parses a data structure to find the password and the username.
33 std::wstring* username,
36 // Decrypts the username and password for a given data vector using the url as
40 std::wstring* username, std::wstring* password);
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebCredential.h 47 static PassRefPtr<WebCredential> create(WebString* username, WebString* password, WebCore::CredentialPersistence persistence)
49 return adoptRef(new WebCredential(WebCore::Credential(username->string(), password->string(), persistence)));
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngine.java 61 * @param username Windows user name
70 String username,

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011>>