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

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/Lib/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/python/cpython3/Lib/distutils/command/
register.py 73 self.username = config['username']
106 First we try to read the username/password from $HOME/.pypirc,
108 [distutils] containing username and password entries (both
116 username: fred
127 # see if we can short-cut and get the username/password from the
131 username = self.username
135 username = password = ''
154 # get the username and passwor
    [all...]
  /external/webrtc/webrtc/examples/turnserver/
turnserver_main.cc 27 virtual bool GetKey(const std::string& username, const std::string& realm,
29 // File is stored as lines of <username>=<HA1>.
30 // Generate HA1 via "echo -n "<username>:<realm>:<password>" | md5sum"
32 bool ret = file_.GetStringValue(username, &hex);
  /packages/experimental/FillService/src/foo/bar/fill/
FillService.java 90 // ViewNode username = findUsername(structure);
93 ViewNode username = null; local
97 username = inputs.get(0);
101 Log.i(LOG_TAG, "found username+username:" + (username != null && password != null));
103 if (username != null && password != null) {
126 .setAuthentication(new AutofillId[]{username.getAutofillId(),
153 .setValue(username.getAutofillId(),
159 // .setValue(username.getAutofillId()
206 ViewNode username = findUsername(structure); local
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/go/darwin-x86/src/database/sql/
example_test.go 36 var username string
37 err := db.QueryRow("SELECT username FROM users WHERE id=?", id).Scan(&username)
44 fmt.Printf("Username is %s\n", username)
  /prebuilts/go/linux-x86/src/database/sql/
example_test.go 36 var username string
37 err := db.QueryRow("SELECT username FROM users WHERE id=?", id).Scan(&username)
44 fmt.Printf("Username is %s\n", 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...]
  /frameworks/base/core/java/com/android/internal/net/
VpnProfile.java 52 public String username = ""; // 3 field in class:VpnProfile
77 username = in.readString();
98 out.writeString(username);
132 profile.username = values[3];
145 profile.saveLogin = !profile.username.isEmpty() || !profile.password.isEmpty();
157 builder.append('\0').append(saveLogin ? username : "");
  /system/tpm/attestation/server/
attestation_service.h 190 // for the given |key|, according to the given |profile|, |username| and
192 bool CreateCertificateRequest(const std::string& username,
201 // |key| identified by |username| and |key_label|. Returns true on success. On
205 const std::string& username,
218 // Creates, certifies, and saves a new |key| for |username| with the given
220 bool CreateKey(const std::string& username,
226 // Finds the |key| associated with |username| and |key_label|. Returns false
228 bool FindKeyByLabel(const std::string& username,
232 // Saves the |key| associated with |username| and |key_label|. Returns true on
234 bool SaveKey(const std::string& username,
    [all...]
  /external/toolchain-utils/cros_utils/
command_executer.py 64 username=None,
81 self.logger.LogCmd(cmd, machine, username, print_to_console)
83 self.logger.LogCmdToFileOnly(cmd, machine, username)
91 if username is not None:
92 user = username + '@'
423 username=None,
429 username=username,
475 username=src_user,
483 username=dest_user
    [all...]
  /external/autotest/client/cros/crash/
user_crash_test.py 175 def _run_crasher_process(self, username, cause_crash=True, consent=True,
186 @param username: Unix user of the crasher process.
196 def run_crasher(username, crasher_command):
224 if username == 'root':
232 crasher_command.extend(['su', username, '-c'])
243 (exit_code, output, pid) = run_crasher(username, crasher_command)
264 expected_uid = pwd.getpwnam(username)[2]
367 def _run_crasher_process_and_analyze(self, username,
375 username, cause_crash=cause_crash, consent=consent,
382 crash_dir = self._get_crash_dir(username, self._force_user_crash_dir
    [all...]
  /external/wpa_supplicant_8/src/crypto/
ms_funcs.c 76 * @username: 0-to-256-char UserName (IN)
77 * @username_len: Length of username
82 const u8 *username, size_t username_len, u8 *challenge)
92 addr[2] = username;
164 * @username: 0-to-256-char UserName (IN)
165 * @username_len: Length of username
172 const u8 *username, size_t username_len,
179 if (challenge_hash(peer_challenge, auth_challenge, username,
    [all...]
  /external/libcups/cups/
ppd-util.c 521 username[HTTP_MAX_URI], /* Username:password */ local
603 httpSeparateURI(HTTP_URI_CODING_ALL, _httpResolveURI(device_uri, uri, sizeof(uri), _HTTP_RESOLVE_DEFAULT, NULL, NULL), scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize);
621 httpSeparateURI(HTTP_URI_CODING_ALL, attr->values[i].string.text, scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize);
645 scheme, sizeof(scheme), username, sizeof(username),
686 httpSeparateURI(HTTP_URI_CODING_ALL, _httpResolveURI(attr->values[0].string.text, uri, sizeof(uri), _HTTP_RESOLVE_DEFAULT, NULL, NULL), scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize)
    [all...]
  /external/ppp/pppd/plugins/
winbind.c 241 unsigned int run_ntlm_auth(const char *username,
325 if (username) {
326 char *b64_username = base64_encode(username);
327 fprintf(pipe_in, "Username:: %s\n", b64_username);
339 fprintf(pipe_in, "Full-Username:: %s\n", b64_full_username);
520 char *username; local
528 /* remove domain from "domain\username" */
529 if ((username = strrchr(user, '\\')) != NULL)
530 ++username;
532 username = user
    [all...]
  /external/toolchain-utils/automation/server/
job_executer.py 36 self.job.primary_machine.username,
85 username=from_machine.username),
103 username=self.job.primary_machine.username),
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 94 public final String username; field in class:PeerConnection.IceServer
102 public IceServer(String uri, String username, String password) {
104 this.username = username;
109 return uri + "[" + username + ":" + password + "]";
  /external/webrtc/webrtc/base/
autodetectproxy.cc 117 char username[kSavedStringLimit]; local
118 SaveStringToStack(username, proxy().username, sizeof username);
127 << autodetect << " " << bypass_list << " " << username; local
  /external/webrtc/webrtc/p2p/base/
candidate.h 47 const std::string& username,
57 username_(username),
109 const std::string & username() const { return username_; } function in class:cricket::Candidate
110 void set_username(const std::string & username) { username_ = username; }
relayserver.cc 258 // The initial packet should have a username (which identifies the binding).
262 LOG(LS_WARNING) << "Dropping packet: no username";
268 std::string username(username_attr->bytes(), length);
272 BindingMap::iterator biter = bindings_.find(username);
274 LOG(LS_WARNING) << "Dropping packet: no binding with username";
297 rtc::AsyncPacketSocket* socket, std::string* username,
306 // The initial packet should have a username (which identifies the binding).
310 SendStunError(*msg, socket, remote_addr, 432, "Missing Username", "");
314 // Record the username if requested.
315 if (username)
329 std::string username; local
389 std::string username; local
    [all...]
  /external/webrtc/webrtc/p2p/client/
httpportallocator.cc 134 username(),
170 ASSERT(!username().empty());
172 url = url + "?username=" + rtc::s_url_encode(username()) +
183 if (!username().empty() && map["username"] != username()) {
184 LOG(LS_WARNING) << "Received unexpected username value from relay server.";
202 map["username"],
  /external/autotest/client/cros/enterprise/
enterprise_policy_base.py 52 # Username and password for the fake dm server can be anything, since
54 USERNAME = 'fake-user@managedchrome.com'
79 username=USERNAME, password=PASSWORD, gaia_id=GAIA_ID):
84 @param username: String user name login credential.
91 self.username = username
116 logging.info(' Username: %r', self.username)
250 'policy_user': self.username,
    [all...]
  /external/autotest/client/cros/networking/chrome_testing/
chrome_networking_test_context.py 47 def __init__(self, extensions=None, username=None, password=None,
53 self._username = username
69 username=self._username,

Completed in 772 milliseconds

1 2 3 4 5 67 8 91011>>