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

12345678

/packages/apps/Phone/src/com/android/phone/
H A DEnableIccPinScreen.java84 mStatusField = (TextView) findViewById(R.id.status);
H A DCallFeaturesSetting.java236 // status message sent back from handlers
316 fi.status = (fi.reason == CommandsInterface.CF_REASON_UNCONDITIONAL) ? 0 : 1;
353 if (i1.status != i2.status ||
703 (fi.status == 1 ?
979 fi.status = 0;
985 fi.status = 0;
1031 if (0 == newInfo.status) {
1034 if (oldInfo != null && oldInfo.status == 0) {
1064 fi.status
[all...]
H A DInCallScreen.java566 // ...and update the in-call notification too, since the status bar
606 // But if the InCallUiState has a "pending call status code" set,
607 // that means we need to display some kind of status or error
615 if (DBG) log("- onResume: need to show status indication!");
652 SyncWithPhoneStateStatus status = syncWithPhoneState();
657 if (status != SyncWithPhoneStateStatus.SUCCESS) {
658 if (DBG) log("- onResume: syncWithPhoneState failed! status = " + status);
3013 * Display a status or error indication to the user according to the
3016 private void showStatusIndication(CallStatusCode status) { argument
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsActor.java379 String status) {
382 createStatus(dataId, status);
431 public long createStatus(long dataId, String status) { argument
435 values.put(StatusUpdates.STATUS, status);
378 createRawContactWithStatus(String name, String address, String status) argument
H A DBaseContactsProvider2Test.java440 int presence, String status, int chatMode) {
441 return insertStatusUpdate(protocol, customProtocol, handle, presence, status, chatMode,
446 int presence, String status, int chatMode, boolean isUserProfile) {
447 return insertStatusUpdate(protocol, customProtocol, handle, presence, status, 0, chatMode,
452 int presence, String status, long timestamp, int chatMode, boolean isUserProfile) {
457 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile);
461 long dataId, int presence, String status, long timestamp, int chatMode) {
462 return insertStatusUpdate(dataId, presence, status, timestamp, chatMode, false);
466 long dataId, int presence, String status, long timestamp, int chatMode,
470 return insertStatusUpdate(values, presence, status, timestam
439 insertStatusUpdate(int protocol, String customProtocol, String handle, int presence, String status, int chatMode) argument
445 insertStatusUpdate(int protocol, String customProtocol, String handle, int presence, String status, int chatMode, boolean isUserProfile) argument
451 insertStatusUpdate(int protocol, String customProtocol, String handle, int presence, String status, long timestamp, int chatMode, boolean isUserProfile) argument
460 insertStatusUpdate( long dataId, int presence, String status, long timestamp, int chatMode) argument
465 insertStatusUpdate( long dataId, int presence, String status, long timestamp, int chatMode, boolean isUserProfile) argument
473 insertStatusUpdate( ContentValues values, int presence, String status, long timestamp, int chatMode, boolean isUserProfile) argument
[all...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DDeviceProfilesSettings.java256 int status = profile.getConnectionStatus(device);
258 status == BluetoothProfile.STATE_CONNECTED;
/packages/apps/Settings/src/com/android/settings/tts/
H A DTtsEngineSettingsFragment.java68 public void onInit(int status) {
69 if (status != TextToSpeech.SUCCESS) {
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java251 int status = entries.getInt(statusColumn);
276 if (status == Events.STATUS_CANCELED) {
371 initialValues.put(Events.STATUS, status);
405 // we temporarily store the DELETED status (will be cleaned later)
509 Integer status = values.getAsInteger(Events.STATUS);
512 if ((status != null && status == Events.STATUS_CANCELED) || deleted) {
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DPublicApiFunctionalTest.java149 enqueueResponse(buildEmptyResponse(1234)); // some invalid HTTP status
194 int status = isFirstResponse ? HTTP_OK : HTTP_PARTIAL_CONTENT;
195 MockResponse response = buildResponse(status, FILE_CONTENT.substring(start, end))
427 int status = download.runUntilDone();
429 assertEquals(-1, status);
646 private RecordedRequest runRedirectionTest(int status) argument
648 enqueueResponse(buildEmptyResponse(status)
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DExchangeService.java166 // Offsets into the syncStatus data for EAS that indicate type, exit status, and change count
293 final int status, final int progress) {
297 cb.loadAttachmentStatus(messageId, attachmentId, status, progress);
303 public void sendMessageStatus(final long messageId, final String subject, final int status,
308 cb.sendMessageStatus(messageId, subject, status, progress);
314 public void syncMailboxListStatus(final long accountId, final int status,
319 cb.syncMailboxListStatus(accountId, status, progress);
325 public void syncMailboxStatus(final long mailboxId, final int status,
330 cb.syncMailboxStatus(mailboxId, status, progress);
938 // Save its id and its sync events status
1719 setMailboxSyncStatus(long id, int status) argument
2666 getStatusType(String status) argument
2680 getStatusChangeCount(String status) argument
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java584 // We'll set the user's status in the Attendees table below
590 // EAS 14+ uses this for the user's response status; we'll use this instead
591 // of busy status, if it appears
620 // If the user is an attendee, set the attendee status using busyStatus (note that the
658 // try to infer it from busy status
663 // For new events in EAS < 14, we have no idea what the busy status
667 // For updated events, we'll try to infer the attendee status from the
668 // busy status
673 // If we're an attendee, save away our initial attendee status in the
675 // the user's current attendee status t
[all...]
H A DEmailSyncAdapter.java393 Log.d(TAG, "GIE status: " + getValue());
730 int status = 1;
738 status = getValueInt();
747 // For sync, status 1 = success
748 if (status != 1) {
749 throw new CommandStatusException(status, msg.mServerId);
1063 * Removed any messages with status 7 (mismatch) from the updatedIdList
1068 // We get serverId and status in the responses
1072 int status = getValueInt();
1073 if (status
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java858 int status = mAttendeesCursor.getInt(ATTENDEES_INDEX_STATUS);
888 // Don't show your own status in the list because:
891 switch(status) {
1024 int status = getResponseFromButtonId(radioGroup.getCheckedRadioButtonId());
1025 if (status == Attendees.ATTENDEE_STATUS_NONE) {
1029 // If the status has not changed, then don't update the database
1030 if (status == mOriginalAttendeeResponse) {
1034 // If we never got an owner attendee id we can't set the status
1041 updateResponse(mEventId, mCalendarOwnerAttendeeId, status);
1051 createExceptionResponse(mEventId, status);
1063 updateResponse(long eventId, long attendeeId, int status) argument
1088 createExceptionResponse(long eventId, int status) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactTileAdapter.java261 contact.status = cursor.getString(mStatusIndex);
274 // Set presence icon and status message
287 // If there is no status message from the contact, but there was a presence value,
288 // then use the default status message string
292 contact.status = statusMessage;
667 public String status; field in class:ContactTileAdapter.ContactEntry
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DQuickContactActivity.java373 final DataStatus status = data.getStatuses().get(dataId);
374 if (status != null && dataItem instanceof EmailDataItem) {
379 action.setPresence(status.getPresence());
/packages/apps/Settings/src/com/android/settings/wifi/p2p/
H A DWifiP2pSettings.java351 if (mSelectedWifiPeer.device.status == WifiP2pDevice.CONNECTED) {
353 } else if (mSelectedWifiPeer.device.status == WifiP2pDevice.INVITED) {
474 if (peer.status == WifiP2pDevice.CONNECTED) mConnectedDevices++;
/packages/apps/Calendar/src/com/android/calendar/event/
H A DAttendeesView.java155 // Add the number of attendees in the specific status (corresponding to the divider) in
285 final int status = attendee.mStatus;
288 switch (status) {
H A DEditEventFragment.java223 int status = cursor.getInt(EditEventHelper.ATTENDEES_INDEX_STATUS);
252 mModel.mSelfAttendeeStatus = status;
254 mOriginalModel.mSelfAttendeeStatus = status;
259 attendee.mStatus = status;
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectSyncedCalendarsMultiAccountAdapter.java190 setText(v, R.id.status, newState ? mSyncedText : mNotSyncedText);
306 setText(view, R.id.status, sync ? mSyncedText : mNotSyncedText);
/packages/apps/Music/src/com/android/music/
H A DMusicUtils.java658 String status = Environment.getExternalStorageState();
669 if (status.equals(Environment.MEDIA_SHARED) ||
670 status.equals(Environment.MEDIA_UNMOUNTED)) {
678 } else if (status.equals(Environment.MEDIA_REMOVED)) {
686 } else if (status.equals(Environment.MEDIA_MOUNTED)){
695 } else if (!TextUtils.equals(mLastSdStatus, status)) {
696 mLastSdStatus = status;
697 Log.d(TAG, "sd card: " + status);
/packages/apps/Settings/src/com/android/settings/wfd/
H A DWifiDisplaySettings.java353 WifiDisplayStatus status = (WifiDisplayStatus)intent.getParcelableExtra(
355 mWifiDisplayStatus = status;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLCanvasImpl.java891 int status = gl11ep.glCheckFramebufferStatusOES(GL11ExtensionPack.GL_FRAMEBUFFER_OES);
892 if (status != GL11ExtensionPack.GL_FRAMEBUFFER_COMPLETE_OES) {
894 switch (status) {
917 throw new RuntimeException(msg + ":" + Integer.toHexString(status));
/packages/apps/Settings/src/com/android/settings/
H A DBatteryInfo.java145 // to battery status broadcasts
154 mStatus = (TextView)findViewById(R.id.status);
H A DRadioInfo.java697 int status = p.waitFor();
698 if (status == 0) {
716 int status = p.waitFor();
717 if (status == 0) {
/packages/apps/Email/src/com/android/email/
H A DController.java857 * Set/clear the unread status of a message
867 * Set/clear the unread status of a message from UI thread
901 * Set the answered status of a message
923 * Set/clear the favorite status of a message from UI thread
939 * Set/clear the favorite status of a message
1519 // If the cause of the MessagingException is an IOException, we send a status of
1522 int status = EmailServiceStatus.ATTACHMENT_NOT_FOUND;
1524 status = EmailServiceStatus.CONNECTION_ERROR;
1526 mCallbackProxy.loadAttachmentStatus(messageId, attachmentId, status, 0);
1761 final int status, fina
[all...]

Completed in 1654 milliseconds

12345678