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

1 2

  /cts/tests/tests/content/src/android/content/cts/
MockSyncAdapter.java 34 private String mAuthority;
46 return mAuthority;
67 mAuthority = null;
83 mAuthority = authority;
103 mAuthority = null;
119 mAuthority = authority;
MockContentProvider.java 65 private final String mAuthority;
101 mAuthority = authority;
105 URL_MATCHER.addURI(mAuthority, "testtable1", TESTTABLE1);
106 URL_MATCHER.addURI(mAuthority, "testtable1/#", TESTTABLE1_ID);
107 URL_MATCHER.addURI(mAuthority, "testtable1/cross", TESTTABLE1_CROSS);
108 URL_MATCHER.addURI(mAuthority, "testtable2", TESTTABLE2);
109 URL_MATCHER.addURI(mAuthority, "testtable2/#", TESTTABLE2_ID);
110 URL_MATCHER.addURI(mAuthority, "self", SELF_ID);
111 URL_MATCHER.addURI(mAuthority, "crash", CRASH_ID);
211 testUri = Uri.parse("content://" + mAuthority + "/testtable1")
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
TestModel.java 38 private final String mAuthority;
42 mAuthority = authority;
51 row.add(RootCursorWrapper.COLUMN_AUTHORITY, 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 144 private String mAuthority;
153 mAuthority = info.authority;
156 mMatcher.addURI(mAuthority, "root", MATCH_ROOTS);
157 mMatcher.addURI(mAuthority, "root/*", MATCH_ROOT);
158 mMatcher.addURI(mAuthority, "root/*/recent", MATCH_RECENT);
159 mMatcher.addURI(mAuthority, "root/*/search", MATCH_SEARCH);
160 mMatcher.addURI(mAuthority, "document/*", MATCH_DOCUMENT);
161 mMatcher.addURI(mAuthority, "document/*/children", MATCH_CHILDREN);
162 mMatcher.addURI(mAuthority, "tree/*/document/*", MATCH_DOCUMENT_TREE);
163 mMatcher.addURI(mAuthority, "tree/*/document/*/children", MATCH_CHILDREN_TREE)
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootCursorWrapper.java 27 private final String mAuthority;
42 mAuthority = authority;
120 return mAuthority;
  /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 111 private String mAuthority;
738 mAuthority = authorities;
741 mAuthority = null;
749 if (mAuthority != null) {
750 return mAuthority.equals(authority);
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
SyncStateSwitchPreference.java 38 private String mAuthority;
49 mAuthority = null;
59 mAuthority = authority;
153 return mAuthority;
  /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 59 private String mAuthority;
72 mAuthority = info.authority;
75 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
76 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
77 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_CONVERSATION,
79 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_CONVOCONTACT,
91 if(D) Log.d(TAG,"attachInfo() mAuthority = " + mAuthority);
106 if(mAuthority == null){
110 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
    [all...]
BluetoothMapEmailProvider.java 59 private String mAuthority;
91 mAuthority = info.authority;
94 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
95 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_FOLDER, MATCH_FOLDER);
96 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
240 if(mAuthority == null){
244 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
246 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
263 if(mAuthority == null){
268 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
DocumentsProviderHelper.java 60 private final String mAuthority;
65 mAuthority = authority;
70 final Uri rootsUri = buildRootsUri(mAuthority);
76 return RootInfo.fromRootsCursor(mAuthority, cursor);
101 Uri parentUri = buildDocumentUri(mAuthority, parentId);
129 Uri parentUri = buildDocumentUri(mAuthority, parentId);
179 Uri parentUri = buildDocumentUri(mAuthority, parentId);
198 Uri parentUri = buildDocumentUri(mAuthority, parentId);
216 Uri parentUri = buildDocumentUri(mAuthority, parentId);
261 Uri uri = buildChildDocumentsUri(mAuthority, documentId)
    [all...]
StubProvider.java 91 private String mAuthority = DEFAULT_AUTHORITY;
97 mAuthority = info.authority;
195 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
215 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
235 DocumentsContract.buildChildDocumentsUri(mAuthority, parentDocumentId));
302 DocumentsContract.buildDocumentUri(mAuthority, oldDoc.documentId), null, false);
307 DocumentsContract.buildDocumentUri(mAuthority, newDoc.documentId), null, false);
452 DocumentsContract.buildDocumentUri(mAuthority, document.documentId),
528 Uri uri = DocumentsContract.buildDocumentUri(mAuthority, documentId);
548 DocumentsContract.buildDocumentUri(mAuthority, document.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 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();
  /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/v4/java/android/support/v4/content/
FileProvider.java 632 private final String mAuthority;
636 mAuthority = authority;
694 .authority(mAuthority).encodedPath(path).build();
    [all...]
  /frameworks/base/packages/DocumentsUI/perf-tests/src/com/android/documentsui/
StressProvider.java 79 private String mAuthority = DEFAULT_AUTHORITY;
89 mAuthority = info.authority;

Completed in 512 milliseconds

1 2