Home | History | Annotate | Download | only in mapapi

Lines Matching defs:mAuthority

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);
108 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
128 if (mAuthority == null) {
132 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
135 newUri = BluetoothMapContract.buildMessageUri(mAuthority, accountId);
137 newUri = BluetoothMapContract.buildMessageUriWithId(mAuthority, accountId,
160 if (mAuthority == null) {
164 newUri = BluetoothMapContract.buildConvoContactsUri(mAuthority);
167 newUri = BluetoothMapContract.buildConvoContactsUri(mAuthority, accountId);
169 newUri = BluetoothMapContract.buildConvoContactsUriWithId(mAuthority, accountId,
321 Log.w(TAG, "query(): uri =" + mAuthority + " uri=" + uri.toString());