HomeSort by relevance Sort by last modified time
    Searched refs:mAuthority (Results 1 - 25 of 49) sorted by null

1 2

  /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
EjectRootTask.java 35 private final String mAuthority;
48 mAuthority = authority;
55 Uri rootUri = DocumentsContract.buildRootUri(mAuthority, mRootId);
59 mResolver, mAuthority);
  /cts/tests/tests/content/src/android/content/cts/
MockSyncAdapter.java 35 private volatile String mAuthority;
47 return mAuthority;
68 mAuthority = null;
90 mAuthority = authority;
108 mAuthority = null;
122 mAuthority = authority;
MockContentProvider.java 72 private final String mAuthority;
110 mAuthority = authority;
114 URL_MATCHER.addURI(mAuthority, "testtable1", TESTTABLE1);
115 URL_MATCHER.addURI(mAuthority, "testtable1/#", TESTTABLE1_ID);
116 URL_MATCHER.addURI(mAuthority, "testtable1/cross", TESTTABLE1_CROSS);
117 URL_MATCHER.addURI(mAuthority, "testtable2", TESTTABLE2);
118 URL_MATCHER.addURI(mAuthority, "testtable2/#", TESTTABLE2_ID);
119 URL_MATCHER.addURI(mAuthority, "self", SELF_ID);
120 URL_MATCHER.addURI(mAuthority, "crash", CRASH_ID);
235 testUri = Uri.parse("content://" + mAuthority + "/testtable1")
    [all...]
  /frameworks/base/core/java/android/provider/
SearchIndexablesProvider.java 69 private String mAuthority;
82 mAuthority = info.authority;
85 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH,
87 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH,
89 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH,
91 mMatcher.addURI(mAuthority, SearchIndexablesContract.SITE_MAP_PAIRS_PATH,
SearchRecentSuggestions.java 111 private final String mAuthority;
141 mAuthority = new String(authority);
144 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
DocumentsProvider.java 154 private String mAuthority;
189 mAuthority = authority;
192 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
193 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
194 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
195 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
196 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
197 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
198 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
199 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcherImpl.java 27 private final String mAuthority;
33 mAuthority = authority;
49 mUriMatcher.addURI(mAuthority, path, value.ordinal());
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 43 private String mAuthority;
58 mAuthority = extras.getString("authority");
122 ContentResolver.requestSync(mAccount, mAuthority, extras);
131 ContentResolver.requestSync(mAccount, mAuthority, extras);
SyncRequest.java 34 private final String mAuthority;
92 return mAuthority;
146 parcel.writeString(mAuthority);
158 mAuthority = in.readString();
166 mAuthority = b.mAuthority;
248 private String mAuthority;
375 mAuthority = authority;
AbstractThreadedSyncAdapter.java 259 Log.d(TAG, "cancelSync() " + info.mAuthority + " " + info.mAccount);
291 private final String mAuthority;
300 mAuthority = authority;
317 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
332 provider = mContext.getContentResolver().acquireContentProviderClient(mAuthority);
335 mAuthority, provider, syncResult);
349 mAuthority, syncResult);
SearchRecentSuggestionsProvider.java 78 private String mAuthority;
182 mAuthority = new String(authority);
186 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
188 mUriMatcher.addURI(mAuthority, SearchManager.SUGGEST_URI_PATH_QUERY, URI_MATCH_SUGGEST);
304 if (mAuthority == null || mMode == 0) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
SyncStateSwitchPreference.java 38 private String mAuthority;
49 mAuthority = null;
55 mAuthority = authority;
149 return mAuthority;
  /packages/apps/Settings/src/com/android/settings/accounts/
SyncStateSwitchPreference.java 39 private String mAuthority;
52 mAuthority = null;
65 mAuthority = authority;
68 setVisible(!TextUtils.isEmpty(mAuthority));
162 return mAuthority;
  /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapIMProvider.java 53 private String mAuthority;
66 mAuthority = info.authority;
69 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
70 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
71 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_CONVERSATION,
73 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_CONVOCONTACT,
86 Log.d(TAG, "attachInfo() mAuthority = " + mAuthority);
102 if (mAuthority == null) {
106 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
    [all...]
BluetoothMapEmailProvider.java 57 private String mAuthority;
88 mAuthority = info.authority;
91 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
92 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_FOLDER, MATCH_FOLDER);
93 mMatcher.addURI(mAuthority, "#/" + BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
243 if (mAuthority == null) {
247 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
249 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
268 if (mAuthority == null) {
273 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
    [all...]
  /frameworks/base/services/core/java/com/android/server/slice/
SliceProviderPermissions.java 90 out.attribute(NAMESPACE, ATTR_AUTHORITY, mAuths.valueAt(i).mAuthority);
135 private final String mAuthority;
140 mAuthority = authority;
145 return mAuthority;
195 return Objects.equals(mAuthority, other.mAuthority)
201 return String.format("(%s: %s)", mAuthority, mPkgs.toString());
SliceClientPermissions.java 147 out.attribute(NAMESPACE, ATTR_AUTHORITY, mAuths.valueAt(i).mAuthority);
201 private final String mAuthority;
207 mAuthority = authority;
213 return mAuthority;
340 return Objects.equals(mAuthority, other.mAuthority)
346 return String.format("(%s, %s: %s)", mAuthority, mPkg.toString(), pathToString(mPaths));
  /packages/apps/DocumentsUI/src/com/android/documentsui/roots/
RootCursorWrapper.java 30 private final String mAuthority;
46 mAuthority = authority;
131 return mAuthority;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
DocumentsProviderHelper.java 61 private final String mAuthority;
66 mAuthority = authority;
71 final Uri rootsUri = buildRootsUri(mAuthority);
77 return RootInfo.fromRootsCursor(mAuthority, cursor);
102 Uri parentUri = buildDocumentUri(mAuthority, parentId);
130 Uri parentUri = buildDocumentUri(mAuthority, parentId);
194 Uri parentUri = buildDocumentUri(mAuthority, parentId);
213 Uri parentUri = buildDocumentUri(mAuthority, parentId);
231 Uri parentUri = buildDocumentUri(mAuthority, parentId);
285 Uri uri = buildChildDocumentsUri(mAuthority, documentId)
    [all...]
StubProvider.java 92 private String mAuthority = DEFAULT_AUTHORITY;
100 mAuthority = info.authority;
200 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
220 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
234 final Uri notifyUri = DocumentsContract.buildDocumentUri(mAuthority, parentDocumentId);
255 DocumentsContract.buildChildDocumentsUri(mAuthority, parentDocumentId));
323 DocumentsContract.buildDocumentUri(mAuthority, oldDoc.documentId), null, false);
328 DocumentsContract.buildDocumentUri(mAuthority, newDoc.documentId), null, false);
480 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
561 Uri uri = DocumentsContract.buildDocumentUri(mAuthority, documentId)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 45 private String mAuthority;
86 result = Result.newSuccess(mResolver.applyBatch(mAuthority, mOps));
97 mAuthority = authority;
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 50 .setSyncAdapter(caller.mAccount, caller.mAuthority)
60 ContentResolver.addPeriodicSync(caller.mAccount, caller.mAuthority, caller.mExtras,
68 caller.mAccount, caller.mAuthority, caller.mExtras);
80 private String mAuthority;
123 System.out.printf(" Authority: %s\n", mAuthority != null ? mAuthority : "All");
164 mAuthority = nextArgRequired();
  /frameworks/base/telephony/java/android/telephony/mbms/
MbmsTempFileProvider.java 44 private String mAuthority;
85 final File file = getFileForUri(mContext, mAuthority, uri);
102 mAuthority = info.authority;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestModel.java 45 private final String mAuthority;
52 mAuthority = authority;
105 doc.authority = mAuthority;
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 40 String mAuthority;
46 mAuthority = "authority1";

Completed in 278 milliseconds

1 2