HomeSort by relevance Sort by last modified time
    Searched refs:auths (Results 1 - 18 of 18) sorted by null

  /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;
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
TriggerContentTest.java 263 String[] auths = params.getTriggeredContentAuthorities(); local
264 assertEquals(1, auths.length);
265 assertEquals(DummyJobContentProvider.AUTHORITY, auths[0]);
279 auths = params.getTriggeredContentAuthorities();
280 assertEquals(1, auths.length);
281 assertEquals(DummyJobContentProvider.AUTHORITY, auths[0]);
309 String[] auths = params.getTriggeredContentAuthorities(); local
310 assertEquals(1, auths.length);
311 assertEquals(DummyJobContentProvider.AUTHORITY, auths[0]);
325 auths = params.getTriggeredContentAuthorities()
351 String[] auths = params.getTriggeredContentAuthorities(); local
    [all...]
  /system/keymaster/
operation.h 98 void SetAuthorizations(const AuthorizationSet& auths) {
99 key_auths_.Reinitialize(auths.data(), auths.size());
android_keymaster_test.cpp 219 AuthorizationSet auths = sw_enforced(); local
220 EXPECT_GT(auths.SerializedSize(), 12U);
222 EXPECT_TRUE(contains(auths, TAG_PURPOSE, KM_PURPOSE_SIGN));
223 EXPECT_TRUE(contains(auths, TAG_PURPOSE, KM_PURPOSE_VERIFY));
224 EXPECT_TRUE(contains(auths, TAG_USER_ID, 7));
225 EXPECT_TRUE(contains(auths, TAG_USER_AUTH_TYPE, HW_AUTH_PASSWORD));
226 EXPECT_TRUE(contains(auths, TAG_AUTH_TIMEOUT, 300));
229 EXPECT_FALSE(contains(auths, TAG_ROOT_OF_TRUST));
230 EXPECT_FALSE(contains(auths, TAG_APPLICATION_ID));
231 EXPECT_FALSE(contains(auths, TAG_APPLICATION_DATA))
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
ChooseAccountActivity.java 192 final StringBuilder auths = new StringBuilder(); local
194 auths.append(a);
195 auths.append(' ');
197 Log.v(TAG, "No providers found for authorities: " + auths);
ManageAccountsSettings.java 374 final ArrayList<String> auths = getAuthoritiesForAccountType(account.type); local
377 if (mAuthorities != null && auths != null) {
380 if (auths.contains(requestedAuthority)) {
390 new AccountPreference(getPrefContext(), account, icon, auths, false);
  /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...]
  /system/keymaster/include/keymaster/
soft_keymaster_context.h 67 keymaster_error_t CreateKeyBlob(const AuthorizationSet& auths, keymaster_key_origin_t origin,