OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:passwordLength
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/crypto/
mock_apple_keychain.cc
17
UInt32*
passwordLength
,
21
// |
passwordLength
|. Otherwise, just return given code.
27
DCHECK(
passwordLength
);
28
*
passwordLength
= arraysize(kPassword);
48
UInt32
passwordLength
,
53
DCHECK_GT(
passwordLength
, 0U);
57
passwordLength
);
apple_keychain.h
39
UInt32*
passwordLength
,
51
UInt32
passwordLength
,
94
UInt32
passwordLength
,
mock_apple_keychain.h
41
UInt32*
passwordLength
,
52
UInt32
passwordLength
,
92
UInt32
passwordLength
,
mock_apple_keychain_mac.cc
390
UInt32
passwordLength
,
426
passwordLength
);
/development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
Policy.java
67
* @param
passwordLength
Password minimum length.
70
public void saveToLocal(int passwordQuality, int
passwordLength
, int passwordMinUppercase) {
77
if (mPasswordLength !=
passwordLength
) {
78
editor.putInt(KEY_PASSWORD_LENGTH,
passwordLength
);
79
mPasswordLength =
passwordLength
;
PolicySetupActivity.java
261
int
passwordLength
= 0;
263
passwordLength
= Integer.valueOf(mPasswordLengthInputField.getText().toString());
272
mPolicy.saveToLocal(passwordQuality,
passwordLength
, passwordMinUppercase);
/packages/apps/Settings/src/com/android/settings/wifi/
WriteWifiConfigToNfcDialog.java
127
String
passwordLength
= password.length() >= HEX_RADIX
131
passwordHex = String.format(PASSWORD_FORMAT,
passwordLength
, passwordHex).toUpperCase();
Completed in 56 milliseconds