HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 201 - 225 of 1357) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/autotest/client/common_lib/cros/
chrome.py 60 username=None, password=None, gaia_id=None,
85 @param password: Log in using this password instead of the default.
134 self.password = b_options.password if password is None else password
137 b_options.password = self.password
  /external/mdnsresponder/mDNSWindows/ControlPanel/
RegistrationPage.cpp 205 CString password; local
216 password = outPassword;
217 m_passwordControl.SetWindowText( password );
294 CString password; local
306 m_passwordControl.GetWindowText( password );
308 if ( username.GetLength() && password.GetLength() )
311 StringObjectToUTF8String( password, passwordUTF8, sizeof( passwordUTF8 ) );
  /external/webrtc/webrtc/p2p/base/
portallocator.h 82 RelayCredentials(const std::string& username, const std::string& password)
83 : username(username), password(password) {}
86 std::string password; member in struct:cricket::RelayCredentials
97 const std::string& password,
100 : type(RELAY_TURN), credentials(username, password) {
152 const std::string& password() const { return ice_pwd_; } function in class:cricket::PortAllocatorSession
relayport.h 45 const std::string& password) {
47 username, password);
83 const std::string& password);
  /packages/apps/Settings/src/com/android/settings/
CryptKeeperSettings.java 44 private static final String PASSWORD = "password";
84 * is no keyguard available, we prompt the user to set a password.
90 // TODO replace (or follow) this dialog with an explicit launch into password UI
189 String password = data.getStringExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD); local
190 if (!TextUtils.isEmpty(password)) {
191 showFinalConfirmation(type, password);
196 private void showFinalConfirmation(int type, String password) {
200 addEncryptionInfoToPreference(preference, type, password);
204 private void addEncryptionInfoToPreference(Preference preference, int type, String password) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
upload.py 33 self.password = ''
47 self.password = config['password']
51 # getting the password from the distribution
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
upload.py 33 self.password = ''
47 self.password = config['password']
51 # getting the password from the distribution
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 33 self.password = ''
47 self.password = config['password']
51 # getting the password from the distribution
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 33 self.password = ''
47 self.password = config['password']
51 # getting the password from the distribution
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
  /external/wpa_supplicant_8/src/ap/
eap_user_db.c 85 if (os_strcmp(col[i], "password") == 0 && argv[i]) {
86 bin_clear_free(user->password, user->password_len);
88 user->password = (u8 *) os_strdup(argv[i]);
120 (user->password == NULL || len > user->password_len)) {
121 bin_clear_free(user->password, user->password_len);
123 user->password = (u8 *) os_strdup(argv[id]);
167 bin_clear_free(hapd->tmp_eap_user.password,
208 user->identity = user->password;
210 user->password = NULL;
246 wsc_registrar.password = (u8 *) conf->ap_pin
    [all...]
  /external/autotest/frontend/
apache_auth.py 19 def authenticate(self, username=None, password=None):
23 # password is meaningless
25 password='apache authentication')
83 password='')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
form_based_credentials_backend.py 64 def _SubmitLoginFormAndWait(self, action_runner, tab, username, password):
72 'document.querySelector({{ selector }}).value = {{ password }};',
74 password=password)
100 if 'username' not in config or 'password' not in config:
101 message = ('Credentials for "%s" must include username and password.' %
122 action_runner, tab, config['username'], config['password'])
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/libchrome/crypto/
symmetric_key.cc 55 const std::string& password,
80 password.data(), password.length(),
symmetric_key_nss.cc 46 const std::string& password,
65 const_cast<char *>(password.data()));
66 password_item.len = password.size();
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 110 STDMETHODIMP COpenCallbackImp::CryptoGetTextPassword(BSTR *password)
118 return getTextPassword->CryptoGetTextPassword(password);
122 return Callback->Open_CryptoGetTextPassword(password);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
netrc.py 71 account = password = None
77 if password:
78 self.hosts[entryname] = (login, account, password)
90 elif tt == 'password':
91 password = lexer.get_token()
97 """Return a (user, account, password) tuple for given host."""
  /external/boringssl/src/crypto/pkcs8/
pkcs8_x509.c 233 const char *password;
321 &wrapped_value, ctx->password, ctx->password_len);
440 if (!pkcs8_pbe_decrypt(&out, &out_len, &ai, ctx->password,
472 CBS *ber_in, const char *password) {
547 ctx.password = password;
548 ctx.password_len = password != NULL ? strlen(password) : 0;
580 if (!pkcs12_key_gen(ctx.password, ctx.password_len, CBS_data(&salt),
718 int PKCS12_parse(const PKCS12 *p12, const char *password, EVP_PKEY **out_pkey
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 134 char[] password,
157 Cipher cipher = makePBECipher(KEY_CIPHER, Cipher.ENCRYPT_MODE, password, salt, iterationCount);
211 char[] password)
214 if (password == null || password.length == 0)
235 Cipher cipher = makePBECipher(KEY_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
254 cipher = makePBECipher("Broken" + KEY_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
275 cipher = makePBECipher("Old" + KEY_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
294 Cipher out = makePBECipher(KEY_CIPHER, Cipher.ENCRYPT_MODE, password, salt, iterationCount);
463 char[] password,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-javamail.jar 
ant-swing.jar 
  /external/lzma/CPP/7zip/Bundles/SFXWin/
SfxWin.cpp 83 UString password; local
118 password = s.Ptr(2);
144 // openCallback.PasswordIsDefined = !password.IsEmpty();
145 // openCallback.Password = password;
152 ecs->PasswordIsDefined = !password.IsEmpty();
153 ecs->Password = password;
  /external/skia/tools/
add_codereview_message.py 42 # Passing None for the email and password will result in a prompt or
44 my_rietveld = rietveld.Rietveld(RIETVELD_URL, email=None, password=None)
  /external/wpa_supplicant_8/src/eap_peer/
eap_vendor_test.c 34 const u8 *password; local
43 password = eap_get_config_password(sm, &password_len);
44 data->test_pending_req = password && password_len == 7 &&
45 os_memcmp(password, "pending", 7) == 0;
  /external/zlib/src/contrib/minizip/
zip.h 230 const char* password,
247 const char* password,
255 password : crypting password (NULL for no crypting)
273 const char* password,
294 const char* password,

Completed in 823 milliseconds

1 2 3 4 5 6 7 891011>>