/external/ppp/pppd/plugins/radius/ |
radrealms.c | 47 SERVER *accts, *auths, *s; local 51 auths = (SERVER *) malloc(sizeof(SERVER)); 52 auths->max = 0; 93 s = auths; 135 if (auths->max) 136 *authserver = auths;
|
/system/keymaster/ |
operation.h | 98 void SetAuthorizations(const AuthorizationSet& auths) { 99 key_auths_.Reinitialize(auths.data(), auths.size());
|
android_keymaster_test.cpp | 309 AuthorizationSet auths = sw_enforced(); local 310 EXPECT_GT(auths.SerializedSize(), 12U); 312 EXPECT_TRUE(contains(auths, TAG_PURPOSE, KM_PURPOSE_SIGN)); 313 EXPECT_TRUE(contains(auths, TAG_PURPOSE, KM_PURPOSE_VERIFY)); 314 EXPECT_TRUE(contains(auths, TAG_USER_ID, 7)); 315 EXPECT_TRUE(contains(auths, TAG_USER_AUTH_TYPE, HW_AUTH_PASSWORD)); 316 EXPECT_TRUE(contains(auths, TAG_AUTH_TIMEOUT, 300)); 319 EXPECT_FALSE(contains(auths, TAG_ROOT_OF_TRUST)); 320 EXPECT_FALSE(contains(auths, TAG_APPLICATION_ID)); 321 EXPECT_FALSE(contains(auths, TAG_APPLICATION_DATA)) [all...] |
soft_keymaster_context.cpp | 258 // All auths go into sw_enforced, including those that would be HW-enforced if we were faking 259 // auths for a HW-backed key.
|
keymaster_enforcement.cpp | 282 /* Tags should never be in key auths. */
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
ChooseAccountActivity.java | 180 final StringBuilder auths = new StringBuilder(); local 182 auths.append(a); 183 auths.append(' '); 185 Log.v(TAG, "No providers found for authorities: " + auths);
|
ManageAccountsSettings.java | 372 final ArrayList<String> auths = getAuthoritiesForAccountType(account.type); local 375 if (mAuthorities != null && auths != null) { 378 if (auths.contains(requestedAuthority)) { 388 new AccountPreference(getActivity(), account, icon, auths, false);
|
/system/keymaster/include/keymaster/ |
soft_keymaster_context.h | 43 keymaster_error_t CreateKeyBlob(const AuthorizationSet& auths, keymaster_key_origin_t origin,
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
Sources.java | 194 final AuthenticatorDescription[] auths = am.getAuthenticatorTypes(); local 205 final AuthenticatorDescription auth = findAuthenticator(auths, accountType); 235 protected static AuthenticatorDescription findAuthenticator(AuthenticatorDescription[] auths, 237 for (AuthenticatorDescription auth : auths) {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
AccountTypeManager.java | 394 final AuthenticatorDescription[] auths = am.getAuthenticatorTypes(); local 406 final AuthenticatorDescription auth = findAuthenticator(auths, type); 555 protected static AuthenticatorDescription findAuthenticator(AuthenticatorDescription[] auths, 557 for (AuthenticatorDescription auth : auths) { [all...] |
/packages/apps/Email/tests/src/com/android/email/provider/ |
AccountBackupRestoreTests.java | 118 // Make sure there are two accounts and four host auths
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
StandardDescriptorProcessor.java | 1407 XmlParser.Node auths = node.get("auth-constraint"); local [all...] |
/external/ppp/pppd/ |
pppd.h | 365 #define CHAP_MS_SHIFT 8 /* LSB position for MS auths */ [all...] |
ccp.c | 558 /* Count the mschap auths */ [all...] |
/frameworks/base/core/java/android/app/ |
ActivityThread.java | 5075 final String auths[] = holder.info.authority.split(";"); local [all...] |