Searched refs:status (Results 176 - 181 of 181) sorted by relevance

12345678

/packages/apps/Phone/src/com/android/phone/
H A DPhoneUtils.java114 /** Noise suppression status as selected by user */
289 // and start conversation, without checking its speaker status. If some other
601 int status = CALL_STATUS_DIALED;
646 status = CALL_STATUS_DIALED_MMI;
648 status = CALL_STATUS_FAILED;
720 return status;
912 if (DBG) log("not a USSD code, displaying status toast.");
1803 // Update the status bar icon
1897 * It also updates the connectionMuteTable and mute icon in the status bar.
2071 // unmuted, the setMute() call automagically updates the status
[all...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java1831 // Mark the exception event status as "tentative", unless the caller has some
1991 Log.d(TAG, "Updating attendee status for event=" + newEventId +
2001 Log.e(TAG, "Attendee status update on event=" + newEventId
2181 // status, then we need to add an entry to the attendees table.
2183 int status = values.getAsInteger(Events.SELF_ATTENDEE_STATUS);
2187 createAttendeeEntry(id, status, owner);
2274 // Copy the attendee status value to the Events table.
2679 * and that has the given response status.
2683 * @param status the response status
2686 createAttendeeEntry(long eventId, int status, String emailAddress) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java1253 // Voicemail source status table.
4870 public void replaceStatusUpdate(Long dataId, long timestamp, String status, String resPackage, argument
4885 bindString(mStatusUpdateReplace, 3, status);
4892 public void insertStatusUpdate(Long dataId, String status, String resPackage, argument
4906 bindString(mStatusUpdateInsert, 2, status);
4924 bindString(mStatusUpdateAutoTimestamp, 2, status);
4926 bindString(mStatusUpdateAutoTimestamp, 4, status);
H A DContactsProvider2.java1685 // No accounts/no contacts status is true if there are no account and
1693 // TODO: Different status if there is a profile but no contacts?
2256 protected void setProviderStatus(int status) { argument
2257 if (mProviderStatus != status) {
2258 mProviderStatus = status;
3028 * Inserts a status update.
3159 String status = values.getAsString(StatusUpdates.STATUS);
3167 Log.w(TAG, "Contact status update resource package not found: "
3183 if (TextUtils.isEmpty(status)) {
3188 mDbHelper.get().replaceStatusUpdate(dataId, timestamp, status, resPackag
3251 statusUpdateToHtml(String status) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java2056 private native boolean clccResponseNative(int index, int dir, int status, int mode, argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java3799 // status_updates.status
3890 // Should return the latest status
3898 String status) {
3903 values.put(StatusUpdates.STATUS, status);
4432 // Tests for inserting or updating stream items as a side-effect of making status updates
4433 // (forward-compatibility of status updates into the new social stream API).
4437 // This method of creating a raw contact automatically inserts a status update with
4438 // the status message "hacking".
4456 // This method of creating a raw contact automatically inserts a status update with
4457 // the status messag
3897 assertStatusUpdate(Cursor c, int protocol, String customProtocol, int presence, String status) argument
[all...]

Completed in 441 milliseconds

12345678