HomeSort by relevance Sort by last modified time
    Searched full:authorities (Results 1 - 25 of 235) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/packages/ExternalStorageProvider/
AndroidManifest.xml 11 android:authorities="com.android.externalstorage.documents"
31 android:authorities="com.example.documents"
  /packages/experimental/RpcPerformance/
AndroidManifest.xml 26 android:authorities="com.android.rpc_performance"
33 android:authorities="com.android.rpc_performance.local"
  /packages/providers/PartnerBookmarksProvider/
AndroidManifest.xml 20 <!-- We add an application tag here just to indicate the authorities -->
23 android:authorities="com.android.partnerbookmarks" />
  /packages/providers/TelephonyProvider/
AndroidManifest.xml 33 android:authorities="telephony"
42 android:authorities="sms"
53 android:authorities="mms"
67 android:authorities="mms-sms"
75 android:authorities="hbpcd_lookup"
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/
AndroidManifest.xml 42 android:authorities="ctspermissionwithsignature"
51 android:authorities="ctspermissionwithsignaturegranting"
61 android:authorities="ctsprivateprovider"
67 android:authorities="ctsprivateprovidergranting"
76 android:authorities="ctsambiguousprovider">
82 android:authorities="ctspermissionwithsignaturepath"
100 android:authorities="ctspermissionwithsignaturepathrestricting"
  /development/samples/Vault/
AndroidManifest.xml 10 android:authorities="com.example.android.vault.provider"
  /frameworks/base/packages/SettingsProvider/
AndroidManifest.xml 15 <provider android:name="SettingsProvider" android:authorities="settings"
  /packages/apps/Settings/src/com/android/settings/accounts/
ChooseAccountActivity.java 133 // Skip preferences for authorities not specified. If no authorities specified,
178 Log.v(TAG, "No providers found for authorities: " + auths);
192 ArrayList<String> authorities = mAccountTypeToAuthorities.get(sa.accountType); local
193 if (authorities == null) {
194 authorities = new ArrayList<String>();
195 mAccountTypeToAuthorities.put(sa.accountType, authorities);
201 authorities.add(sa.authority);
AuthenticatorHelper.java 78 // authorities are initialized
263 ArrayList<String> authorities = mAccountTypeToAuthorities.get(sa.accountType); local
264 if (authorities == null) {
265 authorities = new ArrayList<String>();
266 mAccountTypeToAuthorities.put(sa.accountType, authorities);
272 authorities.add(sa.authority);
  /cts/hostsidetests/devicepolicy/app/IntentSender/
AndroidManifest.xml 37 android:authorities="com.android.cts.intent.sender.fileprovider"
47 android:authorities="com.android.cts.intent.sender.provider"
  /frameworks/base/core/tests/coretests/EnabledTestApp/
AndroidManifest.xml 37 android:authorities="com.android.frameworks.coretests.enabled_app.DisabledProvider"
49 android:authorities="com.android.frameworks.coretests.enabled_app.EnabledProvider"
  /libcore/luni/src/main/java/javax/net/ssl/
X509TrustManager.java 69 * Returns the list of certificate issuer authorities which are trusted for
72 * @return the list of certificate issuer authorities which are trusted for
  /packages/apps/QuickSearchBox/tests/naughty/
AndroidManifest.xml 55 android:authorities="com.android.quicksearchbox.tests.naughty.crashing" />
58 android:authorities="com.android.quicksearchbox.tests.naughty.hanging" />
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareAppCompat/
AndroidManifest.xml 26 android:authorities="ctsambiguousprovidercompat">
  /developers/demos/JustForUs/justforus/src/main/
AndroidManifest.xml 35 android:authorities="com.example.android.justforus"
  /frameworks/base/tests/LocationTracker/
AndroidManifest.xml 27 android:authorities="com.android.locationtracker" />
  /frameworks/opt/photoviewer/sample/
AndroidManifest.xml 29 android:authorities="com.example.photoviewersample.SampleProvider">
  /packages/apps/QuickSearchBox/tests/slow/
AndroidManifest.xml 37 android:authorities="com.android.quicksearchbox.tests.slow" />
  /packages/apps/QuickSearchBox/tests/spammy/
AndroidManifest.xml 37 android:authorities="com.android.quicksearchbox.tests.spammy" />
  /packages/providers/ContactsProvider/
AndroidManifest.xml 28 android:authorities="contacts;com.android.contacts"
47 android:authorities="call_log"
55 android:authorities="com.android.voicemail"
109 android:authorities="com.android.contacts.dumpfile"
  /packages/providers/UserDictionaryProvider/
AndroidManifest.xml 27 <provider android:name="UserDictionaryProvider" android:authorities="user_dictionary"
  /sdk/eclipse/scripts/
_mk_icons.sh 31 icon A green authorities
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AccountSyncSettings.java 213 ArrayList<String> authorities = accountTypeToAuthorities.get(sa.accountType); local
214 if (authorities == null) {
215 authorities = new ArrayList<String>();
216 accountTypeToAuthorities.put(sa.accountType, authorities);
222 authorities.add(sa.authority);
235 final ArrayList<String> authorities = accountTypeToAuthorities.get(account.type); local
236 if (authorities != null && (mAccount == null || mAccount.equals(account))) {
237 for (int j = 0, m = authorities.size(); j < m; j++) {
238 final String authority = authorities.get(j);
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 104 * Returns the list of certificate issuer authorities which are trusted for
107 * @return the list of certificate issuer authorities which are trusted for
  /packages/apps/Settings/src/com/android/settings/
AccountPreference.java 46 ArrayList<String> authorities, boolean showTypeIcon) {
49 mAuthorities = authorities;

Completed in 3208 milliseconds

1 2 3 4 5 6 7 8 910