/system/tpm/attestation/server/ |
mock_key_store.h | 35 bool(const std::string& username, 39 bool(const std::string& username, 43 bool(const std::string& username, const std::string& name)); 45 bool(const std::string& username, 48 bool(const std::string& username, 56 bool(const std::string& username,
|
pkcs11_key_store.h | 51 bool Read(const std::string& username, 54 bool Write(const std::string& username, 57 bool Delete(const std::string& username, 59 bool DeleteByPrefix(const std::string& username, 61 bool Register(const std::string& username, 68 bool RegisterCertificate(const std::string& username, 81 // Gets a slot for the given |username| if |is_user_specific| or the system 83 bool GetUserSlot(const std::string& username, CK_SLOT_ID_PTR slot);
|
/external/ltp/testcases/commands/sssd/ |
sssd03 | 33 sss_usermod -s $line_shell $username 34 getent passwd $username@LOCAL | grep "$line_shell" >/dev/null 2>&1 58 sss_usermod -s $LTPTMP/noshell $username 59 getent passwd $username@LOCAL | grep "$LTPTMP/noshell" >/dev/null 2>&1 82 sss_usermod -s $LTPTMP/noshell $username 89 getent passwd $username@LOCAL | grep "/bin/sh" >/dev/null 2>&1 113 sss_usermod -s $LTPTMP/noshell $username 120 getent passwd $username@LOCAL | grep "$line_shell" >/dev/null 2>&1 143 sss_usermod -s $line_shell $username 150 getent passwd $username@LOCAL | grep "/bin/sh" >/dev/null 2>& [all...] |
/external/toybox/toys/other/ |
login.c | 18 usage: login [-p] [-h host] [-f USERNAME] [USERNAME] 20 Log in as a user, prompting for username and password if necessary. 24 -f login as USERNAME without authentication 32 char *username; 51 char uu[33], *username, *pass = 0, *ss; local 62 if (TT.username) username = TT.username; 63 else username = *toys.optargs [all...] |
/external/autotest/client/site_tests/security_EnableChromeTesting/ |
security_EnableChromeTesting.py | 14 def _set_user(self, username): 15 user_info = pwd.getpwnam(username) 18 self._set_user_environment(username) 22 username = pwd.getpwuid(uid)[0] 25 self._set_user_environment(username) 27 def _set_user_environment(self, username): 28 for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'): 30 os.environ[name] = username
|
/external/syslinux/gpxe/src/hci/tui/ |
login_ui.c | 51 char username[64]; local 60 fetch_string_setting ( NULL, &username_setting, username, 61 sizeof ( username ) ); 71 init_editbox ( &username_box, username, sizeof ( username ), NULL, 80 mvprintw ( USERNAME_LABEL_ROW, LABEL_COL, "Username:" ); 129 if ( ( rc = store_setting ( NULL, &username_setting, username, 130 strlen ( username ) ) ) != 0 )
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
cros_unittest.py | 47 """Read username and password from credentials.txt. The file is a single 48 line of the format username:password. Alternatively, |credentials| is used, 62 username = user 65 username, domain = user.split('@') 69 username = username.replace('.', '') 70 return ('%s@%s' % (username, domain), password) 74 (username, password) = self._GetCredentials('user.1:foo.1') 75 self.assertEquals(username, 'user1@gmail.com') 78 (username, password) = self._GetCredentials('user.1@chromium.org:bar.1' [all...] |
oobe.py | 48 # |args|: ['username', 'pass', True] 49 # Executes: 'doLogin("username", "pass", true)' 56 def NavigateFakeLogin(self, username, password, gaia_id, 59 self._ExecuteOobeApi('Oobe.loginForTesting', username, password, gaia_id, 62 def NavigateGaiaLogin(self, username, password, 72 self._NavigateGaiaLogin(username, password, enterprise_enroll) 79 def _NavigateGaiaLogin(self, username, password, enterprise_enroll): 89 py_utils.WaitFor(_GetGaiaFunction, 20)(self, username, password) 91 def _NavigateIFrameLogin(self, username, password, add_user_for_testing): 98 document.getElementById('Email').value= {{ username }}; [all...] |
/external/autotest/client/site_tests/platform_CryptohomeSyncStress/ |
platform_CryptohomeSyncStress.py | 16 def run_once(self, username=None, password=None): 18 with chrome.Chrome(username=username, password=password):
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/ |
UserAccount.java | 25 * Represents a single user account on the server, including the username, password, home
29 * The <code>username</code> and <code>homeDirectory</code> property must be non-null
63 private String username;
field in class:UserAccount 83 * @param username - the user name
87 public UserAccount(String username, String password, String homeDirectory) {
88 setUsername(username);
94 return username;
97 public void setUsername(String username) {
98 this.username = username;
[all...] |
ServerConfiguration.java | 34 * @param username - the user name
37 public UserAccount getUserAccount(String username);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
PassCommandHandler.java | 41 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME);
local 43 if (validateUserAccount(username, session)) {
44 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
|
AcctCommandHandler.java | 38 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME);
local 41 sendReply(session, ReplyCodes.ACCT_OK, "acct", list(username));
|
/external/curl/lib/ |
curl_ntlm_wb.c | 117 const char *username; local 132 username = userp; 134 empty username. It won't make inferences for itself, and expects 137 afterthought for it). So try hard to provide a suitable username 141 if(!username || !username[0]) { 142 username = getenv("NTLMUSER"); 143 if(!username || !username[0]) 144 username = getenv("LOGNAME") [all...] |
/external/autotest/cli/ |
rpc.py | 38 def __init__(self, web_server, rpc_path, username): 39 self.username = username 50 headers = rpc_client_lib.authorization_headers(self.username, 68 def __init__(self, web_server=None, rpc_path=AFE_RPC_PATH, username=None): 69 super(afe_comm, self).__init__(web_server, rpc_path, username) 74 def __init__(self, web_server=None, rpc_path=TKO_RPC_PATH, username=None): 75 super(tko_comm, self).__init__(web_server, rpc_path, username)
|
/external/syslinux/com32/cmenu/libmenu/ |
passwords.c | 26 char authenticate_user(const char *username, const char *pwd) 34 if (strcmp(username, userdb[i]->username) == 0) { 44 // Does user USERNAME have permission PERM 45 char isallowed(const char *username, const char *perm) 54 if (strcmp(username, GUEST_USER) == 0) 63 if (strcmp(userdb[i]->username, username) == 0) // Found the user 115 user = p; // This is where username starts 134 strcpy(userdb[numusers]->username, user) [all...] |
/external/apache-http/src/org/apache/http/impl/auth/ |
NTLMEngine.java | 66 * @param username Windows user name 75 String username,
|
/external/autotest/server/site_tests/platform_CryptohomeSyncStressServer/ |
platform_CryptohomeSyncStressServer.py | 14 def run_once(self, host, power_addr, outlet, username, password): 20 if username == None: 33 username=username, password=password)
|
/external/libbrillo/brillo/ |
cryptohome.h | 27 // Returns the path at which the user home for |username| will be mounted. 29 BRILLO_EXPORT base::FilePath GetUserPath(const std::string& username); 32 // mounted. Useful when you already have the username hashed. 37 // Returns the path at which the root home for |username| will be mounted. 39 BRILLO_EXPORT base::FilePath GetRootPath(const std::string& username); 42 BRILLO_EXPORT base::FilePath GetDaemonPath(const std::string& username, 45 // Checks whether |sanitized| has the format of a sanitized username. 48 // Returns a sanitized form of |username|. For x != y, SanitizeUserName(x) != 50 BRILLO_EXPORT std::string SanitizeUserName(const std::string& username);
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/ |
StubServerConfiguration.groovy | 37 UserAccount getUserAccount(String username) {
38 (UserAccount) userAccounts[username]
|
/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/webrtc/webrtc/base/ |
proxyinfo.h | 34 std::string username; member in struct:rtc::ProxyInfo
|
/external/webrtc/webrtc/libjingle/xmpp/ |
saslcookiemechanism.h | 25 const std::string & username, 29 username_(username), 34 const std::string & username, 37 username_(username),
|
/libcore/ojluni/src/main/java/javax/sql/ |
DataSource.java | 89 * @param username the database user on whose behalf the connection is 96 Connection getConnection(String username, String password)
|
/external/apache-http/src/org/apache/http/auth/ |
NTCredentials.java | 63 * The constructor with the fully qualified username and password combined 66 * @param usernamePassword the domain/username:password formed string 71 throw new IllegalArgumentException("Username:password string may not be null"); 73 String username; local 76 username = usernamePassword.substring(0, atColon); 79 username = usernamePassword; 82 int atSlash = username.indexOf('/'); 85 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH), 86 username.substring(atSlash + 1)); 90 username.substring(atSlash + 1)) [all...] |