HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothMapContract (Results 1 - 13 of 13) sorted by null

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapIMContentTest.java 15 import com.android.bluetooth.mapapi.BluetoothMapContract;
16 import com.android.bluetooth.mapapi.BluetoothMapContract.ConversationColumns;
40 if(c.getColumnName(i).equals(BluetoothMapContract.MessageColumns.DATE) ||
41 c.getColumnName(i).equals(BluetoothMapContract.ConversationColumns.LAST_THREAD_ACTIVITY) ||
42 c.getColumnName(i).equals(BluetoothMapContract.ChatStatusColumns.LAST_ACTIVE) ||
43 c.getColumnName(i).equals(BluetoothMapContract.PresenceColumns.LAST_ONLINE) ){
56 BluetoothMapContract.buildMessageUri("info.guardianproject.otr.app.im.provider.bluetoothprovider"),
57 BluetoothMapContract.BT_INSTANT_MESSAGE_PROJECTION, null, null, "_id DESC");
74 cv.put(BluetoothMapContract.MessageColumns.BODY, "This is a test to insert a message");
75 cv.put(BluetoothMapContract.MessageColumns.DATE, System.currentTimeMillis())
    [all...]
BluetoothMapContentTest.java 41 import com.android.bluetooth.mapapi.BluetoothMapContract;
68 BluetoothMapContract.MessageColumns.FOLDER_ID,
69 BluetoothMapContract.MessageColumns.ACCOUNT_ID,
73 if (D) Log.d(TAG, BluetoothMapContract.MessageColumns.ACCOUNT_ID + " : " +
74 c.getInt(c.getColumnIndex(BluetoothMapContract.MessageColumns.ACCOUNT_ID)) );
78 BluetoothMapContract.MessageColumns._ID,
79 BluetoothMapContract.MessageColumns.DATE,
82 static final String[] BT_MESSAGE_PROJECTION = BluetoothMapContract.BT_MESSAGE_PROJECTION;
84 static final String[] BT_ACCOUNT_PROJECTION = BluetoothMapContract.BT_ACCOUNT_PROJECTION;
86 static final String[] BT_FOLDER_PROJECTION = BluetoothMapContract.BT_FOLDER_PROJECTION
    [all...]
MapTestData.java 22 import com.android.bluetooth.mapapi.BluetoothMapContract;
  /packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
BluetoothMapIMProvider.java 42 * A base implementation of the BluetoothMapContract.
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,
110 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
112 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
134 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
138 newUri = BluetoothMapContract.buildMessageUri(mAuthority,accountId);
140 newUri = BluetoothMapContract.buildMessageUriWithId(mAuthority,accountId
    [all...]
BluetoothMapEmailProvider.java 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);
200 if(format.equalsIgnoreCase(BluetoothMapContract.FILE_MSG_NO_ATTACHMENTS)) {
202 } else if(format.equalsIgnoreCase(BluetoothMapContract.FILE_MSG_DOWNLOAD_NO_ATTACHMENTS)) {
205 } else if(format.equalsIgnoreCase(BluetoothMapContract.FILE_MSG_DOWNLOAD)) {
244 newUri = BluetoothMapContract.buildAccountUri(mAuthority);
246 newUri = BluetoothMapContract.buildAccountUriwithId(mAuthority, accountId);
268 newUri = BluetoothMapContract.buildMessageUri(mAuthority);
272 newUri = BluetoothMapContract.buildMessageUri(mAuthority,accountId)
    [all...]
BluetoothMapContract.java 59 public final class BluetoothMapContract {
63 private BluetoothMapContract(){
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAccountLoader.java 40 import com.android.bluetooth.mapapi.BluetoothMapContract;
76 searchIntents[0] = new Intent(BluetoothMapContract.PROVIDER_INTERFACE_EMAIL);
77 searchIntents[1] = new Intent(BluetoothMapContract.PROVIDER_INTERFACE_IM);
92 BluetoothMapContract.PROVIDER_INTERFACE_EMAIL) ?
172 + BluetoothMapContract.TABLE_ACCOUNT);
175 c = mProviderClient.query(uri, BluetoothMapContract.BT_IM_ACCOUNT_PROJECTION,
176 null, null, BluetoothMapContract.AccountColumns._ID+" DESC");
178 c = mProviderClient.query(uri, BluetoothMapContract.BT_ACCOUNT_PROJECTION,
179 null, null, BluetoothMapContract.AccountColumns._ID+" DESC");
192 int idIndex = c.getColumnIndex(BluetoothMapContract.AccountColumns._ID)
    [all...]
BluetoothMapContent.java 45 import com.android.bluetooth.mapapi.BluetoothMapContract;
46 import com.android.bluetooth.mapapi.BluetoothMapContract.ConversationColumns;
334 BluetoothMapContract.MessageColumns._ID);
336 BluetoothMapContract.MessageColumns.DATE);
338 BluetoothMapContract.MessageColumns.SUBJECT);
340 BluetoothMapContract.MessageColumns.FOLDER_ID);
342 BluetoothMapContract.MessageColumns.FLAG_READ);
344 BluetoothMapContract.MessageColumns.MESSAGE_SIZE);
346 BluetoothMapContract.MessageColumns.FROM_LIST);
348 BluetoothMapContract.MessageColumns.TO_LIST)
    [all...]
BluetoothMapContentObserver.java 59 import com.android.bluetooth.mapapi.BluetoothMapContract;
60 import com.android.bluetooth.mapapi.BluetoothMapContract.MessageColumns;
229 BluetoothMapContract.MessageColumns._ID,
230 BluetoothMapContract.MessageColumns.FOLDER_ID,
231 BluetoothMapContract.MessageColumns.FLAG_READ
235 BluetoothMapContract.MessageColumns._ID,
236 BluetoothMapContract.MessageColumns.FOLDER_ID,
237 BluetoothMapContract.MessageColumns.FLAG_READ,
238 BluetoothMapContract.MessageColumns.DATE,
239 BluetoothMapContract.MessageColumns.SUBJECT
    [all...]
BluetoothMapAppObserver.java 33 import com.android.bluetooth.mapapi.BluetoothMapContract;
161 Uri uri = BluetoothMapContract.buildAccountUri(app.getProviderAuthority());
187 Uri uri = BluetoothMapContract.buildAccountUri(app.getProviderAuthority());
228 searchIntents[0] = new Intent(BluetoothMapContract.PROVIDER_INTERFACE_EMAIL);
229 searchIntents[1] = new Intent(BluetoothMapContract.PROVIDER_INTERFACE_IM);
247 BluetoothMapContract.PROVIDER_INTERFACE_EMAIL){
250 BluetoothMapContract.PROVIDER_INTERFACE_IM){
BluetoothMapObexServer.java 33 import com.android.bluetooth.mapapi.BluetoothMapContract;
139 mEmailFolderUri = BluetoothMapContract.buildFolderUri(mAuthority,
214 root.addFolder(BluetoothMapContract.FOLDER_NAME_INBOX); // root/telecom/msg/inbox
215 root.addFolder(BluetoothMapContract.FOLDER_NAME_OUTBOX);
216 root.addFolder(BluetoothMapContract.FOLDER_NAME_SENT);
217 root.addFolder(BluetoothMapContract.FOLDER_NAME_DELETED);
225 root.addSmsMmsFolder(BluetoothMapContract.FOLDER_NAME_INBOX); // root/telecom/msg/inbox
226 root.addSmsMmsFolder(BluetoothMapContract.FOLDER_NAME_OUTBOX);
227 root.addSmsMmsFolder(BluetoothMapContract.FOLDER_NAME_SENT);
228 root.addSmsMmsFolder(BluetoothMapContract.FOLDER_NAME_DELETED)
    [all...]
BluetoothMapSettingsAdapter.java 31 import com.android.bluetooth.mapapi.BluetoothMapContract;
319 Uri uri = Uri.parse(account.mBase_uri_no_account+"/"+BluetoothMapContract.TABLE_ACCOUNT);
321 values.put(BluetoothMapContract.AccountColumns.FLAG_EXPOSE, ((account.mIsChecked)?1:0));
322 values.put(BluetoothMapContract.AccountColumns._ID, account.getId()); // get title
BluetoothMapUtils.java 21 import com.android.bluetooth.mapapi.BluetoothMapContract;
130 if(c.getColumnName(i).equals(BluetoothMapContract.MessageColumns.DATE) ||
132 BluetoothMapContract.ConversationColumns.LAST_THREAD_ACTIVITY) ||
133 c.getColumnName(i).equals(BluetoothMapContract.ChatStatusColumns.LAST_ACTIVE) ||
134 c.getColumnName(i).equals(BluetoothMapContract.PresenceColumns.LAST_ONLINE) ){

Completed in 294 milliseconds