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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/util/
ContactLoaderUtils.java 37 * can be thrown if the URI is null or the authority is not recognized.
46 final String authority = uri.getAuthority(); local
49 if (ContactsContract.AUTHORITY.equals(authority)) {
68 final String OBSOLETE_AUTHORITY = Contacts.AUTHORITY;
69 if (OBSOLETE_AUTHORITY.equals(authority)) {
76 throw new IllegalArgumentException("uri authority is unknown");
  /external/libxml2/include/libxml/
uri.h 36 char *authority; /* the authority part */ member in struct:_xmlURI
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/
ContentProviderData.java 6 private final String authority; field in class:ContentProviderData
15 String authority,
21 this.authority = authority;
29 return authority;
  /frameworks/base/core/java/android/content/
SyncInfo.java 43 * The authority of the provider that is currently being synced.
45 public final String authority; field in class:SyncInfo
61 int authorityId, String authority, long startTime) {
62 return new SyncInfo(authorityId, REDACTED_ACCOUNT, authority, startTime);
66 public SyncInfo(int authorityId, Account account, String authority, long startTime) {
69 this.authority = authority;
77 this.authority = other.authority;
90 parcel.writeString(authority);
    [all...]
PeriodicSync.java 32 /** The authority of the sync. Can be null. */
33 public final String authority; field in class:PeriodicSync
47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
49 this.authority = authority;
66 this.authority = other.authority;
76 public PeriodicSync(Account account, String authority, Bundle extras,
79 this.authority = authority;
    [all...]
SyncAdapterType.java 29 public final String authority; field in class:SyncAdapterType
39 public SyncAdapterType(String authority, String accountType, boolean userVisible,
41 if (TextUtils.isEmpty(authority)) {
42 throw new IllegalArgumentException("the authority must not be empty: " + authority);
47 this.authority = authority;
59 public SyncAdapterType(String authority, String accountType, boolean userVisible,
65 if (TextUtils.isEmpty(authority)) {
66 throw new IllegalArgumentException("the authority must not be empty: " + authority)
    [all...]
SyncAdaptersCache.java 63 final String authority = local
67 if (TextUtils.isEmpty(authority) || TextUtils.isEmpty(accountType)) {
84 return new SyncAdapterType(authority, accountType, userVisible, supportsUploading,
103 public String[] getSyncAdapterPackagesForAuthority(String authority, int userId) {
111 if (adapterMap.containsKey(authority)) {
112 return adapterMap.get(authority);
120 if (authority.equals(serviceInfo.type.authority)
127 adapterMap.put(authority, syncAdapterPackages);
144 out.attribute(null, "authority", item.authority)
150 final String authority = parser.getAttributeValue(null, "authority"); local
    [all...]
  /frameworks/ex/common/java/com/android/common/
Search.java 83 String authority = searchable.getSuggestAuthority(); local
84 if (authority == null) {
90 .authority(authority)
  /packages/apps/Dialer/java/com/android/contacts/common/util/
ContactLoaderUtils.java 35 * if the URI is null or the authority is not recognized.
46 final String authority = uri.getAuthority(); local
49 if (ContactsContract.AUTHORITY.equals(authority)) {
68 final String OBSOLETE_AUTHORITY = Contacts.AUTHORITY;
69 if (OBSOLETE_AUTHORITY.equals(authority)) {
76 throw new IllegalArgumentException("uri authority is unknown");
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DocumentFilters.java 53 String authority = getCursorString(c, RootCursorWrapper.COLUMN_AUTHORITY); local
56 && !ArchivesProvider.AUTHORITY.equals(authority);
64 String authority = getCursorString(c, RootCursorWrapper.COLUMN_AUTHORITY); local
68 && !ArchivesProvider.AUTHORITY.equals(authority);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
SearchUtil.java 120 String authority = searchable.getSuggestAuthority(); local
121 if (authority == null) {
126 .authority(authority);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ExportTestProvider.java 102 final String authority = uri.getAuthority(); local
103 TestCase.assertTrue(RawContacts.CONTENT_URI.getAuthority().equals(authority));
  /packages/apps/DocumentsUI/src/com/android/documentsui/
RefreshTask.java 91 final String authority = mDoc.authority; local
95 client = DocumentsApplication.acquireUnstableProviderOrThrow(resolver, authority);
  /frameworks/base/services/core/java/com/android/server/slice/
SliceProviderPermissions.java 39 private static final String TAG_AUTHORITY = "authority";
44 private static final String ATTR_AUTHORITY = "authority";
63 public synchronized SliceAuthority getOrCreateAuthority(String authority) {
64 SliceAuthority ret = mAuths.get(authority);
66 ret = new SliceAuthority(authority, this);
67 mAuths.put(authority, ret);
116 SliceAuthority authority = new SliceAuthority( local
118 authority.readFrom(parser);
119 provider.mAuths.put(authority.getAuthority(), authority); local
    [all...]
  /external/syslinux/gpxe/src/core/
uri.c 78 char *authority = NULL; local
135 * terminator after the authority field, so shuffle
136 * the authority down by one byte, overwriting one of
139 authority = ( path + 2 );
140 if ( ( tmp = strchr ( authority, '/' ) ) ) {
143 memmove ( ( authority - 1 ), authority,
144 ( tmp - authority ) );
145 authority--;
153 /* Split authority into user[:password] and host[:port] portions *
    [all...]
  /frameworks/base/core/java/android/content/pm/
ProviderInfo.java 34 public String authority = null; field in class:ProviderInfo
111 authority = orig.authority;
130 pw.println(prefix + "authority=" + authority);
141 out.writeString(authority);
165 return "ContentProviderInfo{name=" + authority + " className=" + name + "}";
170 authority = in.readString();
  /libcore/ojluni/src/main/java/java/security/cert/
CertificateRevokedException.java 64 * authority that signed the certificate's revocation status information
66 private final X500Principal authority; field in class:CertificateRevokedException
72 * the specified revocation date, reason code, authority name, and map
81 * @param authority the {@code X500Principal} that represents the name
82 * of the authority that signed the certificate's revocation status
85 * {@code reason}, {@code authority}, or
89 X500Principal authority, Map<String, Extension> extensions) {
90 if (revocationDate == null || reason == null || authority == null ||
96 this.authority = authority;
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
SelectionMetadata.java 103 final String authority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY); local
104 if (ArchivesProvider.AUTHORITY.equals(authority)) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
RootItem.java 56 // Empty URI authority is invalid, so we can use empty string if root.authority is null.
58 // authority.
59 String authority = (root.authority == null ? "" : root.authority); local
60 return String.format(STRING_ID_FORMAT, authority, root.rootId);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestionProvider.java 119 String authority = getAuthority(context); local
121 matcher.addURI(authority, SearchManager.SUGGEST_URI_PATH_QUERY,
123 matcher.addURI(authority, SearchManager.SUGGEST_URI_PATH_QUERY + "/*",
125 matcher.addURI(authority, SearchManager.SUGGEST_URI_PATH_SHORTCUT,
127 matcher.addURI(authority, SearchManager.SUGGEST_URI_PATH_SHORTCUT + "/*",
  /packages/apps/Settings/src/com/android/settings/slices/
SliceBroadcastReceiver.java 182 final String authority = isPlatformDefined local
183 ? SettingsSlicesContract.AUTHORITY
187 .authority(authority)
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 64 /** Authority for the uri.
67 protected Authority authority; field in class:SipUri
115 if (this.authority != null) {
116 UserInfo userInfo = authority.getUserInfo();
122 /** Get the authority.
124 public Authority getAuthority() {
125 return this.authority;
243 if (authority != null)
244 authority.encode(buffer)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 94 final String authority = getContext().getPackageName() + ".testresultsprovider"; local
96 URI_MATCHER.addURI(authority, RESULTS_PATH, RESULTS_ALL);
97 URI_MATCHER.addURI(authority, RESULTS_PATH + "/#", RESULTS_ID);
98 URI_MATCHER.addURI(authority, RESULTS_PATH + "/*", RESULTS_TEST_NAME);
  /external/lzma/CPP/7zip/UI/Common/
PropIDUtils.cpp 306 UInt32 authority = GetBe32(p + 4); local
308 if (p[2] == 0 && p[3] == 0 && authority == 5 && num >= 1)
356 ConvertUInt32ToString(authority, sz);
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 162 String authority = uri.getAuthority().toLowerCase(); local
166 // find the last : in the authority
167 int index = authority.lastIndexOf(":");
169 authority = authority.substring(0, index);
177 return scheme + "://" + authority + path;

Completed in 702 milliseconds

1 2 3 4 5 6 7 8 91011>>