Searched refs:status (Results 201 - 225 of 271) sorted by relevance

1234567891011

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java249 int status = entries.getInt(statusColumn);
274 if (status == Events.STATUS_CANCELED) {
369 initialValues.put(Events.STATUS, status);
403 // we temporarily store the DELETED status (will be cleaned later)
507 Integer status = values.getAsInteger(Events.STATUS);
510 if ((status != null && status == Events.STATUS_CANCELED) || deleted) {
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java840 // not change the dialog status
1088 int status = mAttendeesCursor.getInt(ATTENDEES_INDEX_STATUS);
1118 // Don't show your own status in the list because:
1121 switch(status) {
1324 int status = getResponseFromButtonId(
1326 if (status == Attendees.ATTENDEE_STATUS_NONE) {
1330 // If the status has not changed, then don't update the database
1331 if (status == mOriginalAttendeeResponse) {
1335 // If we never got an owner attendee id we can't set the status
1342 updateResponse(mEventId, mCalendarOwnerAttendeeId, status);
1369 updateResponse(long eventId, long attendeeId, int status) argument
1394 createExceptionResponse(long eventId, int status) argument
[all...]
H A DCalendarEventModel.java86 public Attendee(String name, String email, int status, String identity, argument
90 mStatus = status;
473 String status = Integer.toString(attendee.mStatus);
476 b.append(" status:").append(status);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java415 int presence, String status, int chatMode) {
416 return insertStatusUpdate(protocol, customProtocol, handle, presence, status, chatMode,
421 int presence, String status, int chatMode, boolean isUserProfile) {
422 return insertStatusUpdate(protocol, customProtocol, handle, presence, status, 0, chatMode,
427 int presence, String status, long timestamp, int chatMode, boolean isUserProfile) {
432 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile);
436 long dataId, int presence, String status, long timestamp, int chatMode) {
437 return insertStatusUpdate(dataId, presence, status, timestamp, chatMode, false);
441 long dataId, int presence, String status, long timestamp, int chatMode,
445 return insertStatusUpdate(values, presence, status, timestam
414 insertStatusUpdate(int protocol, String customProtocol, String handle, int presence, String status, int chatMode) argument
420 insertStatusUpdate(int protocol, String customProtocol, String handle, int presence, String status, int chatMode, boolean isUserProfile) argument
426 insertStatusUpdate(int protocol, String customProtocol, String handle, int presence, String status, long timestamp, int chatMode, boolean isUserProfile) argument
435 insertStatusUpdate( long dataId, int presence, String status, long timestamp, int chatMode) argument
440 insertStatusUpdate( long dataId, int presence, String status, long timestamp, int chatMode, boolean isUserProfile) argument
448 insertStatusUpdate( ContentValues values, int presence, String status, long timestamp, int chatMode, boolean isUserProfile) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DAvrcpControllerService.java548 // Any messages hence forth about play pos/play status/song info will be ignored.
560 // Any messages hence forth about play pos/play status/song info will be sent.
703 int status = msg.arg1;
704 mRemoteMediaPlayers.getAddressedPlayer().mPlayStatus = (byte) status;
705 if (status == AvrcpControllerConstants.PLAY_STATUS_PLAYING) {
707 } else if (status == AvrcpControllerConstants.PLAY_STATUS_PAUSED ||
708 status == AvrcpControllerConstants.PLAY_STATUS_STOPPED) {
/packages/apps/Settings/src/com/android/settings/wifi/p2p/
H A DWifiP2pSettings.java387 if (mSelectedWifiPeer.device.status == WifiP2pDevice.CONNECTED) {
389 } else if (mSelectedWifiPeer.device.status == WifiP2pDevice.INVITED) {
519 if (peer.status == WifiP2pDevice.CONNECTED) mConnectedDevices++;
/packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
H A DBlockedNumberProvider.java335 SystemContract.BlockSuppressionStatus status = getBlockSuppressionStatus();
336 res.putBoolean(SystemContract.RES_IS_BLOCKING_SUPPRESSED, status.isSuppressed);
338 status.untilTimestampMillis);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadStorageProvider.java377 final int status = cursor.getInt(
379 switch (status) {
433 if (status != DownloadManager.STATUS_RUNNING) {
/packages/services/Car/libvehiclenetwork/native/
H A DVehicleNetworkProtoUtil.cpp603 status_t status = parcel.readBlob(size, blob.blob); local
604 if (status != NO_ERROR) {
606 return status;
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DPbapPCEClient.java153 public synchronized void onPbapClientConnected(boolean status) { argument
154 mClientConnected = status;
/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.java261 int status = cursor.getInt(EditEventHelper.ATTENDEES_INDEX_STATUS);
290 mModel.mSelfAttendeeStatus = status;
292 mOriginalModel.mSelfAttendeeStatus = status;
297 attendee.mStatus = status;
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTileAdapter.java247 contact.status = cursor.getString(mStatusIndex);
254 // Set presence icon and status message
267 // If there is no status message from the contact, but there was a presence value,
268 // then use the default status message string
272 contact.status = statusMessage;
/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/tts/
H A DTtsEngineSettingsFragment.java74 public void onInit(int status) {
75 if (status != TextToSpeech.SUCCESS) {
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiStatusTest.java50 * Show the current status details of Wifi related fields
343 int status = p.waitFor();
344 if (status == 0) {
/packages/apps/Settings/tests/app/src/com/android/settings/vpn2/
H A DVpnTests.java313 int status = p.waitFor();
314 if (status == 0) {
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DBluetoothDevicePairer.java60 * First we try to create a bond to the device and listen for bond status
105 * The status of the {@link BluetoothDevicePairer} changed.
218 Log.d(TAG, "There was a link status change for: " + device.getAddress());
352 // set status to scanning before we start listening since
556 * Set the status and update any listener.
558 private void setStatus(int status) { argument
559 mStatus = status;
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
H A DTtsEngineSettingsFragment.java90 public void onInit(int status) {
91 if (status != TextToSpeech.SUCCESS) {
/packages/services/Car/car-support-lib/src/android/support/car/hardware/
H A DCarSensorEvent.java563 public int status; field in class:CarSensorEvent.DrivingStatusData
579 data.status = intValues[0];
643 * Class that contains GPS satellite status. For more info on meaning of these fields refer
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapbMessage.java481 boolean status = false;
563 status = true;
565 status =false;
630 newBMsg.setStatus(status);
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertService.java604 final int status = alertCursor.getInt(ALERT_INDEX_SELF_ATTENDEE_STATUS);
605 final boolean declined = status == Attendees.ATTENDEE_STATUS_DECLINED;
606 final boolean responded = status != Attendees.ATTENDEE_STATUS_NONE
607 && status != Attendees.ATTENDEE_STATUS_INVITED;
941 // Flash ticker in status bar
946 // Generate either a pop-up dialog, status bar notification, or
947 // neither. Pop-up dialog and status bar notification may include a
948 // sound, an alert, or both. A status bar notification also includes
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLES11Canvas.java887 int status = gl11ep.glCheckFramebufferStatusOES(GL11ExtensionPack.GL_FRAMEBUFFER_OES);
888 if (status != GL11ExtensionPack.GL_FRAMEBUFFER_COMPLETE_OES) {
890 switch (status) {
913 throw new RuntimeException(msg + ":" + Integer.toHexString(status));
H A DGLES20Canvas.java882 int status = GLES20.glCheckFramebufferStatus(GLES20.GL_FRAMEBUFFER);
883 if (status != GLES20.GL_FRAMEBUFFER_COMPLETE) {
885 switch (status) {
899 throw new RuntimeException(msg + ":" + Integer.toHexString(status));
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStorageWizardFormatProgress.java273 public void onStatusChanged(int moveId, int status, long estMillis) { argument

Completed in 1494 milliseconds

1234567891011