HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 101 - 125 of 636) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/experimental/FillService/src/foo/bar/fill/
AuthActivity.java 27 ViewNode username = FillService.findUsername(structure); local
42 .setValue(username.getAutofillId(),
48 .setValue(username.getAutofillId(),
60 .setValue(username.getAutofillId(),
  /test/vti/test_serving/gae/webapp/src/endpoint/
host_info.py 72 username = users.get_current_user().email()
74 username = "anonymous"
88 device.username = username
  /prebuilts/go/darwin-x86/src/net/smtp/
auth.go 42 identity, username, password string
48 // username and password to authenticate to host and act as identity.
49 // Usually identity should be the empty string, to act as username.
54 func PlainAuth(identity, username, password, host string) Auth {
55 return &plainAuth{identity, username, password, host}
74 resp := []byte(a.identity + "\x00" + a.username + "\x00" + a.password)
87 username, secret string
92 // The returned Auth uses the given username and secret to authenticate
94 func CRAMMD5Auth(username, secret string) Auth {
95 return &cramMD5Auth{username, secret
    [all...]
  /prebuilts/go/linux-x86/src/net/smtp/
auth.go 42 identity, username, password string
48 // username and password to authenticate to host and act as identity.
49 // Usually identity should be the empty string, to act as username.
54 func PlainAuth(identity, username, password, host string) Auth {
55 return &plainAuth{identity, username, password, host}
74 resp := []byte(a.identity + "\x00" + a.username + "\x00" + a.password)
87 username, secret string
92 // The returned Auth uses the given username and secret to authenticate
94 func CRAMMD5Auth(username, secret string) Auth {
95 return &cramMD5Auth{username, secret
    [all...]
  /external/apache-http/android/src/android/net/http/
RequestHandle.java 223 public void setupBasicAuthResponse(boolean isProxy, String username, String password) {
224 String response = computeBasicAuthResponse(username, password);
236 String username,
245 username, password, realm, nonce, QOP, algorithm, opaque);
272 * @return Basic-scheme authentication response: BASE64(username:password).
274 public static String computeBasicAuthResponse(String username, String password) {
275 if (username == null) {
276 throw new NullPointerException("username == null");
283 // encode username:password to base64
284 return new String(Base64.encodeBase64((username + ':' + password).getBytes()))
    [all...]
  /external/autotest/client/common_lib/cros/
chrome.py 20 def NormalizeEmail(username):
21 """Remove dots from username. Add @gmail.com if necessary.
25 @param username: username/email to be scrubbed.
27 parts = re.split('@', username)
60 username=None, password=None, gaia_id=None,
86 @param username: Log in using this username instead of the default.
149 self.username = b_options.username if username is None else usernam
    [all...]
  /external/python/cpython3/Lib/email/
headerregistry.py 18 def __init__(self, display_name='', username='', domain='', addr_spec=None):
21 An address can have a 'display_name', a 'username', and a 'domain'. In
22 addition to specifying the username and domain separately, they may be
24 username and domain keywords. If an addr_spec string is specified it
28 An Address object has display_name, username, domain, and addr_spec
36 # keyword. The email library code itself must always supply username
39 if username or domain:
40 raise TypeError("addrspec specified when username and/or "
49 username = a_s.local_part
52 self._username = username
60 def username(self): member in class:Address
    [all...]
  /external/syslinux/com32/cmenu/
complex.c 53 char username[12]; // Name of user currently using the system variable
80 (isallowed(username, "editcmd") || isallowed(username, "root"))) {
112 csprint("Enter Username: ", 0x07);
113 getstring(login, sizeof username);
122 strcpy(username, login);
125 strcpy(username, GUEST_USER);
128 strcpy(username, GUEST_USER);
132 if (strcmp(username, GUEST_USER) == 0) {
159 cprint(ms->fillchar, ms->fillattr, sizeof username);
    [all...]
  /external/curl/docs/cmdline-opts/
socks5-gssapi.d 7 GSS-API support). Use --socks5-basic to force username/password authentication
  /external/libcups/cups/
md5passwd.c 25 * 'httpMD5()' - Compute the MD5 sum of the username:group:password.
29 httpMD5(const char *username, /* I - User name */
43 snprintf(line, sizeof(line), "%s:%s:%s", username, realm, passwd);
57 * 'httpMD5Final()' - Combine the MD5 sum of the username, group, and password
85 * Then combine A1 (MD5 of username, realm, and password) with the nonce
  /external/wpa_supplicant_8/src/utils/
http-utils.h 39 const char *ca_fname, const char *username,
54 const char *username, const char *password,
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ServiceStore.java 82 public Bundle autoDiscover(Context context, String username, String password) {
84 return getService().autoDiscover(username, password);
  /prebuilts/go/darwin-x86/src/os/user/
lookup.go 26 // Lookup looks up a user by username. If the user cannot be found, the
28 func Lookup(username string) (*User, error) {
29 if u, err := Current(); err == nil && u.Username == username {
32 return lookupUser(username)
  /prebuilts/go/linux-x86/src/os/user/
lookup.go 26 // Lookup looks up a user by username. If the user cannot be found, the
28 func Lookup(username string) (*User, error) {
29 if u, err := Current(); err == nil && u.Username == username {
32 return lookupUser(username)
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
StandardAutoCompleteSignInActivity.java 98 String username = mUsernameAutoCompleteField.getText().toString(); local
100 boolean valid = isValidCredentials(username, password);
114 public boolean isValidCredentials(String username, String password) {
115 return username != null && password != null && username.equals(password);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
StandardAutoCompleteSignInActivity.java 100 String username = mUsernameAutoCompleteField.getText().toString(); local
102 boolean valid = isValidCredentials(username, password);
116 public boolean isValidCredentials(String username, String password) {
117 return username != null && password != null && username.equals(password);
  /external/toybox/toys/posix/
id.c 85 static void do_id(char *username)
95 // check if a username is given
96 if (username) {
97 pw = xgetpwnam(username);
131 ngroups = username ? getgrouplist(username, gid, groups, &i)
  /external/webrtc/webrtc/p2p/client/
fakeportallocator.h 35 const std::string& username,
40 max_port, username, password, origin,
65 const std::string& username,
75 username,
105 network_.GetBestIP(), 0, 0, username(),
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapStore.java 39 private final String username; field in class:ImapStore
55 String username,
63 this.username = username;
77 return username;
  /external/autotest/database/
database_connection.py 11 'username' : 'user',
37 def connect(self, host=None, username=None, password=None, db_name=None):
71 def connect(self, host=None, username=None, password=None, db_name=None):
77 host=host, user=username, passwd=password, db=db_name,
94 def connect(self, host=None, username=None, password=None, db_name=None):
124 def connect(self, host=None, username=None, password=None, db_name=None):
161 _DATABASE_ATTRIBUTES = ('db_type', 'host', 'username', 'password',
210 def _read_options(self, db_type=None, host=None, username=None,
220 @param username: user name for database connection, default to None.
225 use_afe_setting = not bool(db_type or host or username or password
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/
netty-handler-proxy-4.1.6.Final.jar 
  /external/mdnsresponder/mDNSWindows/ControlPanel/
RegistrationPage.cpp 204 CString username; local
213 username = outUsername;
214 m_usernameControl.SetWindowText( username );
292 CString username; local
305 m_usernameControl.GetWindowText( username );
308 if ( username.GetLength() && password.GetLength() )
310 StringObjectToUTF8String( username, usernameUTF8, sizeof( usernameUTF8 ) );
  /external/webrtc/webrtc/p2p/base/
portallocator.h 79 // TODO(deadbeef): Rename to TurnCredentials (and username to ufrag).
82 RelayCredentials(const std::string& username, const std::string& password)
83 : username(username), password(password) {}
85 std::string username; member in struct:cricket::RelayCredentials
96 const std::string& username,
100 : type(RELAY_TURN), credentials(username, password) {
151 const std::string& username() const { return ice_ufrag_; } function in class:cricket::PortAllocatorSession
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
ConstructorTest.java 188 public final String username; field in class:ConstructorTest.EntityWithAnnotations
195 @NonNull String username,
198 this.username = username;
210 if (!username.equals(that.username)) return false;
218 result = 31 * result + username.hashCode();
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 58 Process a request to authenticate a client. We assume that the username
67 self.username = self.request.get('username')
70 logging.info('Authenticatng username: ' + self.username)
72 if ((self.username != None) and
73 (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
88 The request should include username/password parameters that correspond
95 self.username = self.request.get('username')
    [all...]

Completed in 462 milliseconds

1 2 3 45 6 7 8 91011>>