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

1 2

  /cts/tests/tests/content/src/android/content/cts/
MockSyncAdapter.java 34 private volatile String mAuthority;
46 return mAuthority;
67 mAuthority = null;
83 mAuthority = authority;
101 mAuthority = null;
115 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...]
  /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);
  /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/provider/
SearchIndexablesProvider.java 69 private String mAuthority;
81 mAuthority = info.authority;
84 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_XML_RES_PATH,
86 mMatcher.addURI(mAuthority, SearchIndexablesContract.INDEXABLES_RAW_PATH,
88 mMatcher.addURI(mAuthority, SearchIndexablesContract.NON_INDEXABLES_KEYS_PATH,
SearchRecentSuggestions.java 111 private final String mAuthority;
141 mAuthority = new String(authority);
144 mSuggestionsUri = Uri.parse("content://" + mAuthority + "/suggestions");
DocumentsProvider.java 155 private String mAuthority;
190 mAuthority = authority;
193 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
194 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
195 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
196 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
197 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
198 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
199 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
200 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE)
    [all...]
  /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 240 private final String mAuthority;
249 mAuthority = authority;
262 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
270 provider = mContext.getContentResolver().acquireContentProviderClient(mAuthority);
273 mAuthority, provider, syncResult);
279 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) {
ContentProvider.java 115 private String mAuthority;
763 mAuthority = authorities;
766 mAuthority = null;
774 if (mAuthority != null) {
775 return mAuthority.equals(authority);
    [all...]
  /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/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,
85 if(D) Log.d(TAG,"attachInfo() mAuthority = " + mAuthority);
100 if(mAuthority == null){
104 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
    [all...]
BluetoothMapEmailProvider.java 57 private String mAuthority;
89 mAuthority = info.authority;
92 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
93 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_FOLDER, MATCH_FOLDER);
94 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
238 if(mAuthority == null){
242 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
244 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
261 if(mAuthority == null){
266 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
    [all...]
  /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);
185 Uri parentUri = buildDocumentUri(mAuthority, parentId);
204 Uri parentUri = buildDocumentUri(mAuthority, parentId);
222 Uri parentUri = buildDocumentUri(mAuthority, parentId);
267 Uri uri = buildChildDocumentsUri(mAuthority, documentId)
    [all...]
StubProvider.java 90 private String mAuthority = DEFAULT_AUTHORITY;
97 mAuthority = info.authority;
197 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
217 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
231 final Uri notifyUri = DocumentsContract.buildDocumentUri(mAuthority, parentDocumentId);
252 DocumentsContract.buildChildDocumentsUri(mAuthority, parentDocumentId));
320 DocumentsContract.buildDocumentUri(mAuthority, oldDoc.documentId), null, false);
325 DocumentsContract.buildDocumentUri(mAuthority, newDoc.documentId), null, false);
468 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
549 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;
  /packages/apps/Settings/src/com/android/settings/accounts/
SyncStateSwitchPreference.java 38 private String mAuthority;
51 mAuthority = null;
64 mAuthority = authority;
160 return mAuthority;
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 35 private String mAuthority = null;
74 System.out.printf(" Authority: %s\n", mAuthority != null ? mAuthority : "All");
83 ContentResolver.requestSync(account, mAuthority, mExtras);
98 mAuthority = nextArgRequired();
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestModel.java 45 private final String mAuthority;
52 mAuthority = authority;
104 doc.authority = mAuthority;
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 46 String mAuthority;
52 mAuthority = "authority1";
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 103 private String mAuthority;
107 mAuthority = info.authority;
125 final Uri uri = DocumentsContract.buildRootsUri(mAuthority);
  /frameworks/support/core-utils/java/android/support/v4/content/
FileProvider.java 665 private final String mAuthority;
669 mAuthority = authority;
    [all...]

Completed in 425 milliseconds

1 2