HomeSort by relevance Sort by last modified time
    Searched refs:STATUS (Results 51 - 75 of 86) sorted by null

1 23 4

  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 242 if (CalendarContract.Events.STATUS.equals(pair.key)) {
243 // Do type conversion for STATUS
249 if (map.size() == 1 && map.containsKey(Events.STATUS)) {
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduParser.java 275 case PduHeaders.STATUS:
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 95 private enum Status {
138 private final Status mStatus;
144 private Result(Uri requestedUri, Status status, Exception exception) {
145 if (status == Status.ERROR && exception == null) {
148 mStatus = status;
175 return new Result(requestedUri, Status.ERROR, exception);
179 return new Result(requestedUri, Status.NOT_FOUND, null);
190 mStatus = Status.LOADED
744 final DataStatus status = new DataStatus(cursor); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppUtility.java 70 info.mStatus = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS));
250 * Get status description according to status code.
BluetoothOppObexClientSession.java 261 int status = BluetoothShare.STATUS_SUCCESS; local
268 status = BluetoothShare.STATUS_CANCELED;
273 status = BluetoothShare.STATUS_CONNECTION_ERROR;
275 if (status == BluetoothShare.STATUS_SUCCESS) {
278 status = sendFile(mFileInfo);
281 status = mFileInfo.mStatus;
285 Constants.updateShareStatus(mContext1, mInfo.mId, status);
288 if (status == BluetoothShare.STATUS_SUCCESS) {
296 mInfo.mStatus = status;
338 int status = BluetoothShare.STATUS_SUCCESS local
542 int status = BluetoothShare.STATUS_OBEX_DATA_ERROR; local
    [all...]
BluetoothOppObexServerSession.java 75 /* status when server is blocking for user/auto confirmation */
335 int status = BluetoothShare.STATUS_SUCCESS; local
342 status = mFileInfo.mStatus;
345 Constants.updateShareStatus(mContext, mInfo.mId, status);
355 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
358 status = receiveFile(mFileInfo, op);
360 * TODO map status to obex response code
362 if (status != BluetoothShare.STATUS_SUCCESS) {
365 Constants.updateShareStatus(mContext, mInfo.mId, status);
368 if (status == BluetoothShare.STATUS_SUCCESS)
418 int status = -1; local
    [all...]
BluetoothOppTransfer.java 217 * Handle session completed status Set batch status to
224 * trigger content provider again to know batch status change
319 if (V) Log.v(TAG, "Current share has status " + mCurrentShare.mStatus);
335 updateValues.put(BluetoothShare.STATUS, info.mStatus);
366 * 1) Check Bluetooth status
376 * 1) Check Bluetooth status
384 /* check Bluetooth enable status */
487 * Set transfer confirmed status. It should only be called for inbound
756 /* update a trivial field of a share to notify Provider the batch status change *
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 149 Sms.STATUS,
  /frameworks/base/core/java/android/provider/
CalendarContract.java 383 * Can the organizer respond to the event? If no, the status of the
749 * The attendance status of the attendee. Column name.
    [all...]
ContactsContract.java 92 * {@link StatusUpdates}, which contains social status updates including IM
    [all...]
Contacts.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 382 final DataStatus status = new DataStatus(); local
389 // Handle any social status updates from this row
390 status.possibleUpdate(cursor);
666 Data.STATUS,
692 final int STATUS = 5;
  /packages/apps/Mms/src/com/android/mms/transaction/
MessagingNotification.java 105 + " AND " + Sms.STATUS + " = "+ Sms.STATUS_COMPLETE +")";
756 " AND " + Mms.STATUS + "=" +
SmsReceiverService.java 92 Sms.STATUS, //4
249 int status = c.getInt(SEND_COLUMN_STATUS); local
255 address, msgText, threadId, status == Sms.STATUS_PENDING,
318 // when the status of the connection/radio changes, we can try to send the
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 78 Events.STATUS + "," +
511 CalendarContract.Events.STATUS + " INTEGER," +
    [all...]
  /external/oprofile/utils/
opcontrol 141 --status show configuration
744 --status)
745 STATUS=yes
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
ContactLoaderTest.java 320 Data.STATUS, Data.STATUS_RES_PACKAGE, Data.STATUS_ICON,
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 581 // We'll set the user's status in the Attendees table below
587 // EAS 14+ uses this for the user's response status; we'll use this instead
588 // of busy status, if it appears
614 // If the user is an attendee, set the attendee status using busyStatus (note that the
652 // try to infer it from busy status
1065 int status = getValueInt(); local
1269 int status = -1; local
1315 String status = null; local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsActor.java 360 String status) {
363 createStatus(dataId, status);
412 public long createStatus(long dataId, String status) {
416 values.put(StatusUpdates.STATUS, status);
ContactsProvider2Test.java 233 Data.STATUS,
310 Data.STATUS,
382 Data.STATUS,
594 StatusUpdates.STATUS,
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 531 String CONCRETE_STATUS = Tables.STATUS_UPDATES + "." + StatusUpdates.STATUS;
546 String CONCRETE_STATUS = ALIAS + "." + StatusUpdates.STATUS;
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 304 Events.STATUS,
364 values.put(Events.STATUS, seed % 2); // avoid STATUS_CANCELED for general testing
473 values.put(Events.STATUS, seed % 3);
605 String email, int status, int relationship, int type) {
612 attendee.put(Attendees.ATTENDEE_STATUS, status);
1224 int status = EventHelper.lookupSelfAttendeeStatus(mContentResolver, eventId1); local
1260 int status = EventHelper.lookupSelfAttendeeStatus(mContentResolver, eventId2); local
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 61 * Custom IM protocol used when storing status messages.
230 * Update the status messages for a list of users. This is typically called
232 * the contact's status until they have a profileId.
341 // If we have a serverId, then go ahead and create our status profile.
365 * @param updateStatus should we update this user's status
465 // If we don't have a status profile, then create one. This could
467 // create the status profile until after the first sync...
561 * Update the status message associated with the specified user. The status
567 * @param rawContact the contact whose status we should updat
577 final String status = rawContact.getStatus(); local
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 163 // Make sure non-DST TZ's get the proper offset and DST status otherwise
538 entityValues.put(Events.STATUS, Events.STATUS_CANCELED);
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java     [all...]

Completed in 6017 milliseconds

1 23 4