HomeSort by relevance Sort by last modified time
    Searched defs:authority (Results 76 - 100 of 300) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
SuggestionsAdapter.java 699 String authority = uri.getAuthority(); local
701 if (TextUtils.isEmpty(authority)) {
702 throw new FileNotFoundException("No authority: " + uri);
705 r = mContext.getPackageManager().getResourcesForApplication(authority);
707 throw new FileNotFoundException("No package found for authority: " + uri);
723 id = r.getIdentifier(path.get(1), path.get(0), authority);
741 String authority = searchable.getSuggestAuthority(); local
742 if (authority == null) {
748 .authority(authority)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
AbstractActionHandler.java 151 root.authority,
153 listener).executeOnExecutor(ProviderExecutor.forAuthority(root.authority));
191 task.executeOnExecutor(mExecutors.lookup(root.authority));
204 task.executeOnExecutor(mExecutors.lookup(doc == null ? null : doc.authority));
569 mState.stack.getRoot().authority,
573 mState.stack.peek().authority,
Metrics.java 517 logIntraProviderFileOps(context, dst.authority, operationType);
608 final String authority = docUri.getAuthority(); local
609 switch (authority) {
678 isSystemProvider(dst.authority) ? PROVIDER_SYSTEM : PROVIDER_EXTERNAL;
684 Context context, String authority, @OpType int operationType) {
686 String histogram = isSystemProvider(authority) ? COUNT_FILEOP_SYSTEM : COUNT_FILEOP_EXTERNAL;
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
CopyJob.java 321 root = cache.getRootOneshot(root.authority, root.rootId, true);
377 if (src.authority.equals(dstDirInfo.authority)) {
511 src = DocumentInfo.fromCursor(cursor, srcDir.authority);
718 final String authority = uri.getAuthority(); local
733 final Uri dirUri = buildDocumentUri(authority,
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 149 String authority = uri.getAuthority(); local
151 if (scheme.equals("content") && authority.equals("media")) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 187 private void addSyncStateSwitch(Account account, String authority,
189 SyncStateSwitchPreference item = (SyncStateSwitchPreference) getCachedPreference(authority);
191 item = new SyncStateSwitchPreference(getPrefContext(), account, authority,
195 item.setup(account, authority, packageName, uid);
200 authority, 0, mUserHandle.getIdentifier());
206 Log.e(TAG, "Provider needs a label for authority '" + authority + "'");
210 item.setKey(authority);
278 String authority = syncPref.getAuthority(); local
284 authority, userId)
435 String authority = syncPref.getAuthority(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppStorageSettings.java 21 import static android.os.storage.StorageVolume.ScopedAccessProviderContract.AUTHORITY;
423 String authority = perm.uri.getAuthority(); local
424 ProviderInfo provider = pm.resolveContentProvider(authority, 0);
470 .authority(AUTHORITY).appendPath(TABLE_PERMISSIONS).appendPath("*")
  /frameworks/base/services/core/java/com/android/server/content/
SyncStorageEngine.java 372 /** Called when an authority is removed. */
377 * Validator that maintains a lazy cache of accounts and providers to tell if an authority or
404 // An authority is only valid if it has a content provider installed on the system
405 boolean isAuthorityValid(String authority, int userId) {
411 if (!authorityMap.containsKey(authority)) {
412 authorityMap.put(authority, mPackageManager.resolveContentProviderAsUser(authority,
416 return authorityMap.get(authority);
659 AuthorityInfo authority = getAuthorityLocked( local
662 return authority != null && authority.enabled
690 AuthorityInfo authority = local
723 AuthorityInfo authority = getAuthorityLocked( local
787 AuthorityInfo authority = getAuthorityLocked(info, "getBackoff"); local
896 AuthorityInfo authority = getAuthorityLocked(info, "getDelayUntil"); local
910 AuthorityInfo authority = getOrCreateAuthorityLocked(info, -1, true); local
929 AuthorityInfo authority = mAuthorities.valueAt(i); local
1000 AuthorityInfo authority = getOrCreateAuthorityLocked(info, local
1132 AuthorityInfo authority = getAuthorityLocked(op.target, "insertStartSyncEvent"); local
1468 AuthorityInfo authority = accountInfo.authorities.get(info.provider); local
1488 AuthorityInfo authority = null; local
1504 AuthorityInfo authority; local
1648 AuthorityInfo authority = null; local
1726 AuthorityInfo authority = mAuthorities.valueAt(i); local
1787 AuthorityInfo authority = null; local
1978 AuthorityInfo authority = mAuthorities.valueAt(i); local
2066 AuthorityInfo authority = local
2124 AuthorityInfo authority = mAuthorities.valueAt(i); local
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.1/
grpc-core-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/
grpc-core-1.0.3.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/0.13.2/
grpc-netty-0.13.2.jar 
  /external/robolectric/v1/src/main/java/android/net/
Uri__FromAndroid.java 89 ambiguous in terms of differentiating between an authority component
93 matching. In other words, the authority component wins."
96 <scheme>://<authority><path>?<query>
190 * Gets the decoded authority part of this URI. For
191 * server addresses, the authority is structured as follows:
196 * @return the authority for this URI or null if not present
201 * Gets the encoded authority part of this URI. For
202 * server addresses, the authority is structured as follows:
207 * @return the authority for this URI or null if not present
212 * Gets the decoded user information from the authority
514 private Part authority; field in class:Uri__FromAndroid.StringUri
1004 String authority = getEncodedAuthority(); local
1027 String authority = getEncodedAuthority(); local
1052 String authority = getEncodedAuthority(); local
1085 private final Part authority; field in class:Uri__FromAndroid.HierarchicalUri
1265 private Part authority; field in class:Uri__FromAndroid.Builder
1308 Builder authority(Part authority) { method in class:Uri__FromAndroid.Builder
1319 public Builder authority(String authority) { method in class:Uri__FromAndroid.Builder
    [all...]
  /frameworks/base/core/java/android/content/
ContentResolver.java 178 * the given account/authority pair. One required initialization step is to
1531 String authority = uri.getAuthority(); local
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 103 ambiguous in terms of differentiating between an authority component
107 matching. In other words, the authority component wins."
110 <scheme>://<authority><path>?<query>
205 * Gets the decoded authority part of this URI. For
206 * server addresses, the authority is structured as follows:
211 * @return the authority for this URI or null if not present
217 * Gets the encoded authority part of this URI. For
218 * server addresses, the authority is structured as follows:
223 * @return the authority for this URI or null if not present
229 * Gets the decoded user information from the authority
588 private Part authority; field in class:Uri.StringUri
1086 String authority = getEncodedAuthority(); local
1109 String authority = getEncodedAuthority(); local
1134 String authority = getEncodedAuthority(); local
1167 private final Part authority; field in class:Uri.HierarchicalUri
1349 private Part authority; field in class:Uri.Builder
1392 Builder authority(Part authority) { method in class:Uri.Builder
1403 public Builder authority(String authority) { method in class:Uri.Builder
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 205 final String authority = uri.getAuthority(); local
206 if (Contacts.AUTHORITY.equals(authority)) {
208 } else if (ContactsContract.AUTHORITY.equals(authority)) {
    [all...]
  /libcore/ojluni/src/main/java/java/net/
URI.java 105 * [<i>scheme</i><b>{@code :}</b>][<b>{@code //}</b><i>authority</i>][<i>path</i>][<b>{@code ?}</b><i>query</i>][<b>{@code #}</b><i>fragment</i>]
113 * <p> The authority component of a hierarchical URI is, if specified, either
114 * <i>server-based</i> or <i>registry-based</i>. A server-based authority
123 * authority component that does not parse in this way is considered to be
129 * specifies an authority is always absolute.
133 * <blockquote><table summary="Describes the components of a URI:scheme,scheme-specific-part,authority,user-info,host,port,path,query,fragment">
137 * <tr><td>authority</td><td>{@code String}</td></tr>
159 * authority component is present and is server-based then the host component
388 * slashes before an empty authority (as in {@code file:///tmp/}&nbsp;) or a
411 * if <i>u</i> is hierarchical and has either no authority or a server-base
477 private transient String authority; \/\/ Registry or server field in class:URI
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 815 String authority = Calendars.CONTENT_URI.getAuthority(); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 267 String authority = android.provider.Contacts.AUTHORITY; external variable declarations
268 matcher.addURI(authority, "extensions", EXTENSIONS);
269 matcher.addURI(authority, "extensions/#", EXTENSIONS_ID);
270 matcher.addURI(authority, "groups", GROUPS);
271 matcher.addURI(authority, "groups/#", GROUPS_ID);
272 matcher.addURI(authority, "groups/name/*/members", GROUP_NAME_MEMBERS);
273 // matcher.addURI(authority, "groups/name/*/members/filter/*",
275 matcher.addURI(authority, "groups/system_id/*/members", GROUP_SYSTEM_ID_MEMBERS);
276 // matcher.addURI(authority, "groups/system_id/*/members/filter/*"
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/0.13.2/
grpc-core-0.13.2.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/1.0.1/
grpc-netty-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/1.0.3/
grpc-netty-1.0.3.jar 
  /prebuilts/sdk/28/optional/
android.test.runner.jar 
  /prebuilts/sdk/current/optional/
android.test.runner.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-all/0.13.2/
grpc-all-0.13.2.jar 
  /external/libevent/
http.c 4742 char *authority; local
    [all...]

Completed in 537 milliseconds

1 2 34 5 6 7 8 91011>>